-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathMiddleofLinkedList.cpp
More file actions
96 lines (75 loc) · 1.73 KB
/
MiddleofLinkedList.cpp
File metadata and controls
96 lines (75 loc) · 1.73 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
#include <iostream>
using namespace std;
/* creating a node structure in C/C++ */
struct Node {
int data;
struct Node *next;
};
/* defining head as null as there is no node in the list initially. */
struct Node* head = NULL;
void push(int data) {
Node *temp;
temp = head;
/* creating a node and assigning data to it and make its next as null */
struct Node* new_node = (struct Node*) malloc(sizeof(struct Node));
new_node->data = data;
new_node->next = NULL;
/* check if it's empty make new_node as head */
if(head == NULL) {
head = new_node;
}
/* otherwise move upto the last and then connect last node with the new_node */
else {
while(temp->next != NULL) {
temp = temp->next;
}
temp->next = new_node;
}
}
/* Utility function to find the nth Node from the end. */
void findMiddle() {
Node *slow, *fast;
slow = head;
fast = head;
if(head == NULL) {
cout << "The list doesn't exist." << endl;
return;
}
/*
move one pointer one time & other pointer two times
which will result fast pointer at the end and slow pointer in the middle of a list
*/
while (fast != NULL && fast->next != NULL) {
slow = slow->next;
fast = fast->next->next;
}
/* finally printing data of middle of list */
cout << slow->data << endl;
}
/* for printing a ist */
void printList() {
struct Node* ptr;
ptr = head;
while (ptr != NULL) {
cout<< ptr->data <<" "; // use printf() for C
ptr = ptr->next;
}
cout<<endl;
}
int main() {
push(2);
push(3);
push(4);
push(5);
push(6);
cout<<"Original List is: ";
printList();
cout<<"Middle of List is: ";
findMiddle();
push(7);
cout<<"Original List is: ";
printList();
cout<<"Middle of List is: ";
findMiddle();
return 0;
}