-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinkedList.cpp
173 lines (152 loc) · 3.14 KB
/
linkedList.cpp
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
#include <bits/stdc++.h>
using namespace std;
class Node
{
public:
int data;
class Node *next;
};
/*
We can use structure too
struct Node
{
int data;
Node* next;
}
*/
// we can use (*pointer).its_members
//in place of pointer->its_members
void traversalOfElements(Node *head)
{
while (head!= NULL) // head head != 0
{
cout << (*head).data << " ";
head = head -> next;
//head = head->next ;
}
}
void recursive_display(Node * head)
{
if(head)
{
cout<<(*head).data<<" " ;
recursive_display((*head).next);
}
}
//(*head).data works same as head->data
//display Linked list reverse order
void recursive_display_reverse(Node * head)
{
if(head)
{
recursive_display_reverse((*head).next);
cout<<(*head).data<<" " ;
}
}
//counting no of nodes in linked list
int count_nodes(Node * head)
{
int count = 0 ;
while (head)
{
count++;
head = head->next ;
}
return count ;
}
//counting no of nodes in linked list
int count_nodes_recursive(Node * head)
{
if(!head)
{
return 0 ;
}
else{
return count_nodes_recursive(head->next) + 1 ;
}
}
int greatest_number(Node * head)
{
int max_ = INT_MIN ;
while (head)
{
max_ = max(max_ , head->data);
head = head->next ;
}
return max_;
}
int greatest_number_recursive(Node * head)
{
if(!head)
return INT_MIN;
return max(greatest_number_recursive(head->next) , head->data);
}
void insert_ele_at_end(int ele, class Node *head)
{
class Node *newNode = new Node;
(*newNode).data = ele;
newNode->next = NULL;
while (head->next != NULL)
{
head = head->next;
}
head->next = newNode;
}
Node *insert_ele_at_begining(int ele, Node *head)
{
Node *newNode = new Node;
(*newNode).data = ele;
newNode->next = head;
head = newNode;
return head;
}
class Node *delete_ele_beg(class Node *head)
{
class Node *newNode = new Node;
newNode = head;
head = head->next;
delete newNode;
return head;
}
void delete_ele_end(class Node *head)
{
class Node *newNode = new Node;
while ((*head).next->next != NULL)
{
head = head->next;
}
newNode = head->next;
head->next = NULL;
delete newNode;
}
void delete_any_ele_data(class Node *head, int ele)
{
class Node *newNode = new Node;
while (head->data == ele)
{
head = head->next;
}
newNode = head->next;
head->next = newNode->next;
newNode->next = NULL;
delete newNode;
}
int main()
{
Node *head = new Node; //head Node pointer of linked list
head->data = 0;
head->next = NULL;
int arr[] = {1,2,3,4,5,6,7,8,9}; //taking array for input in linked list
int n = sizeof(arr) /sizeof(arr[0]); //size of array
for (int i = 0; i < n; i++)
{
head = insert_ele_at_begining(arr[i], head);
}
//recursive_display(head);
//recursive_display_reverse(head);
//cout<<count_nodes(head);
//cout<<count_nodes_recursive(head);
//cout<<greatest_number(head);
cout<<greatest_number_recursive(head);
return 0;
}