-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathquestion13.c
219 lines (190 loc) · 4.47 KB
/
question13.c
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
212
213
214
215
216
217
218
219
/*
Check whether a given list is a palindrome or not
METHOD1:
clone the list, reverse it and compare the first half of the list with the remaining half(that is first half
of cloned list.)
Time complexity: O(n)
Space complexity: O(n)
METHOD2:
push all the elements of the linked list on to a stack. Now traverse the linked list and pop element from
the stack and compare the first half elements.
Time complexity: O(n)
Space complexity: O(n)
METHOD3:
Find the middle of the list, reverse the second half. Now compare the first half with the second half.
If its a match given linked list is a palindrome. Reverse the second half again to not distort the input.
Time complexity: O(n)
Space complexity: O(1)
*/
//METHOD1
#include <stdio.h>
#include <stdlib.h>
struct node{
char data;
struct node *link;
};
void printList(struct node *head){
for(;head;head=head->link){
printf("%c-->", head->data);
}
}
void makeList(struct node *head){
int count = 0;
head->data = 'a';
head->link = (struct node *)malloc(sizeof(struct node));
head = head->link;
head->data = 'r';
head->link = (struct node *)malloc(sizeof(struct node));
head = head->link;
head->data = 'o';
head->link = (struct node *)malloc(sizeof(struct node));
head = head->link;
head->data = 'r';
head->link = (struct node *)malloc(sizeof(struct node));
head = head->link;
head->data = 'a';
head->link = NULL;
}
struct node *cloneList(struct node *head){
struct node *clone = (struct node *)malloc(sizeof(struct node));
struct node *t = clone;
while(head){
clone->data = head->data;
if(head->link){
clone->link = (struct node *)malloc(sizeof(struct node));
}else{
clone->link = NULL;
}
head = head->link;
clone = clone->link;
}
return t;
}
struct node *reverseList(struct node *head){
struct node *prev,*next,*curr;
curr = head;
prev = NULL;
while(curr){
next = curr->link;
curr->link = prev;
prev = curr;
curr = next;
}
head = prev;
return head;
}
int palindrome(struct node *head){
if(head == NULL || head->link == NULL){
return 1;
}
struct node *clone = cloneList(head);
// printList(clone);
clone = reverseList(clone);
// printList(clone);
for(;head && clone;head=head->link, clone=clone->link){
if(head->data != clone->data){
return 0;
}
}
return 1;
}
int main(){
struct node *head = (struct node *)malloc(sizeof(struct node));
makeList(head);
// printList(head);
if(palindrome(head)){
printf("linked list is a palindrome\n");
}else{
printf("linked list is NOT a palindrome\n");
}
return 0;
}
//===============================================================================================
//METHOD2: stack to be done later
//===============================================================================================
//METHOD3
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
struct node{
char data;
struct node *link;
};
void printList(struct node *head){
for(;head;head=head->link){
printf("%c-->", head->data);
}
printf("\n");
}
void makeList(struct node *head){
int count = 0;
head->data = 'a';
head->link = (struct node *)malloc(sizeof(struct node));
head = head->link;
head->data = 'r';
head->link = (struct node *)malloc(sizeof(struct node));
head = head->link;
head->data = 'o';
head->link = (struct node *)malloc(sizeof(struct node));
head = head->link;
head->data = 'r';
head->link = (struct node *)malloc(sizeof(struct node));
head = head->link;
head->data = 'a';
head->link = NULL;
}
struct node *reverseList(struct node *head){
struct node *prev,*next,*curr;
curr = head;
prev = NULL;
while(curr){
next = curr->link;
curr->link = prev;
prev = curr;
curr = next;
}
head = prev;
return head;
}
struct node *reverseSecondHalf(struct node *head, int mid){
int count = 1;
while(count<=mid){
head = head->link;
count++;
}
printf("%c\n", head->data);
head = reverseList(head);
return head;
}
int palindrome(struct node *head){
if(head == NULL || head->link == NULL){
return 1;
}
struct node *t = head;
int count = 1;
while(t){
count++;
t=t->link;
}
t = head;
int mid = ceil(count/2);
struct node *other = reverseSecondHalf(head,mid);
struct node *temp = other;
for(;temp;temp=temp->link, t=t->link){
if(t->data != temp->data){
return 0;
}
}
other = reverseList(other);
return 1;
}
int main(){
struct node *head = (struct node *)malloc(sizeof(struct node));
makeList(head);
if(palindrome(head)){
printf("linked list is a palindrome\n");
}else{
printf("linked list is NOT a palindrome\n");
}
return 0;
}