-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddtwonosrepresentedbylinkedlists.cpp
More file actions
211 lines (179 loc) · 4.41 KB
/
Addtwonosrepresentedbylinkedlists.cpp
File metadata and controls
211 lines (179 loc) · 4.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
// { Driver Code Starts
// driver
#include <bits/stdc++.h>
using namespace std;
/* Linked list Node */
struct Node {
int data;
struct Node* next;
Node(int x) {
data = x;
next = NULL;
}
};
struct Node* buildList(int size)
{
int val;
cout<<"enter head data:"<<endl;
cin>> val;
Node* head = new Node(val);
Node* tail = head;
for(int i=0; i<size-1; i++)
{
cout<<"enter the following value:"<<endl;
cin>> val;
tail->next = new Node(val);
tail = tail->next;
}
return head;
}
void printList(Node* n)
{
while(n)
{
cout<< n->data << " ";
n = n->next;
}
cout<< endl;
}
// } Driver Code Ends
/* node for linked list:
struct Node {
int data;
struct Node* next;
Node(int x) {
data = x;
next = NULL;
}
};
*/
class Solution
{
public:
Node* reverse(Node* head)
{
Node* curr=head;
Node* prev=NULL;
Node* next=NULL;
while(curr!=NULL)
{
next=curr->next;
curr->next=prev;
prev=curr;
curr=next;
}
return prev; //head
}
void insertattail(struct Node* &head,struct Node* &tail,int val )
{
Node* temp=new Node(val);
//empty list
if(head==NULL)
{
head=temp;
tail=temp;
return;
}
else
{
tail->next=temp;
tail=temp;
}
}
//Function to add two numbers represented by linked list.
struct Node* add(struct Node* first, struct Node* second)
{
// code here
Node* anshead=NULL;
Node* anstail=NULL;
int carry=0;
// while(first!=NULL && second!=NULL)
// {
// int sum=carry+first->data+second->data;
// int digit=sum%10;
// insertattail(anshead,anstail,digit);
// carry=sum/10;
// first=first->next;
// second=second->next;
// }
// //first LL over
// while(first!=NULL) //first is long
// {
// int sum=carry+first->data;
// int digit=sum%10;
// insertattail(anshead,anstail,digit);
// carry=sum/10;
// first=first->next;
// }
// //second LL over
// while(second!=NULL) //first is long
// {
// int sum=carry+second->data;
// int digit=sum%10;
// insertattail(anshead,anstail,digit);
// carry=sum/10;
// second=second->next;
// }
// //both equal length
// while(carry!=0)
// {
// int sum=carry;
// int digit=sum%10;
// insertattail(anshead,anstail,digit);
// carry=sum/10;
// }
// return anshead;
while(first!=NULL || second!=NULL || carry!=0)
{
int val1=0; //for carry
if(first!=NULL)
val1=first->data;
int val2=0;
if(second!=NULL)
val2=second->data;
int sum = carry + val1 + val2;
int digit = sum%10;
//create node and add in answer Linked List
insertattail(anshead, anstail, digit);
carry = sum/10;
if(first != NULL)
first = first -> next;
if(second != NULL)
second = second -> next;
}
return anshead;
}
struct Node* addTwoLists(struct Node* first,struct Node* second)
{
//reversing both ll
first=reverse(first);
second=reverse(second);
//add ll
Node* ans=add(first,second);
//reverse ans list
ans=reverse(ans);
return ans;
}
};
// { Driver Code Starts.
int main()
{
int t;
cout<<"\n enter no.of lists:"<<endl;
cin>>t;
while(t--)
{
int n, m;
cout<<"enter length of list 1:"<<endl;
cin>>n;
Node* first = buildList(n);
cout<<"enter length of list 2:"<<endl;
cin>>m;
Node* second = buildList(m);
Solution ob;
Node* res = ob.addTwoLists(first,second);
printList(res);
}
return 0;
}
// } Driver Code Ends