-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreverse-linked-list.c
More file actions
71 lines (68 loc) · 1.49 KB
/
reverse-linked-list.c
File metadata and controls
71 lines (68 loc) · 1.49 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
#include<stdio.h>
#include<stdlib.h>
struct Node *createLinkedList(int arr[], int size);
void reverseLinkedList(struct Node *head);
struct Node
{
int data;
struct Node *next;
};
int main()
{
int a[] = {5, 10, 15, 20};
struct Node *head;
head = createLinkedList(a, 4);
struct Node *newHead = head;
while(head != NULL)
{
printf("%d -> ", head->data);
head = head->next;
}
printf("NULL\n");
// Reverse a linked List
reverseLinkedList(newHead);
return 0;
}
void reverseLinkedList(struct Node *head)
{
struct Node *privious = NULL, *current = head, *next = NULL;
while(current != NULL)
{
// Store the next node
next = current->next;
// reverse the link/connection
current->next = privious;
// propagate
privious = current;
current = next;
}
head = privious;
while(head != NULL)
{
printf("%d -> ", head->data);
head = head->next;
}
printf("NULL\n");
}
struct Node *createLinkedList(int arr[], int size)
{
struct Node *head = NULL, *temp = NULL, *current = NULL;
int i;
for(i = 0; i < size; i++)
{
temp = (struct Node *)malloc(sizeof(struct Node));
temp->data = arr[i];
temp->next = NULL;
if(head == NULL)
{
head = temp;
current = temp;
}
else
{
current->next = temp;
current = current->next;
}
}
return head;
}