-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkedList.cpp
More file actions
119 lines (109 loc) · 2.15 KB
/
Copy pathLinkedList.cpp
File metadata and controls
119 lines (109 loc) · 2.15 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
#include <iostream>
#include <string>
using namespace std;
struct Node{
public:
string info;
Node *next;};
class LinkedList{
public:
Node *head;
LinkedList(){
head=NULL;}
bool isEmpty(){
bool status;
if (head==NULL){
status=true;
}
else{
;
status=false;}
return status;
}
void InsertAtStart(string info){
Node *newNode= new Node();
newNode->info=info;
newNode->next=NULL;
if (head==NULL){
head=newNode;
}
else{
Node *n=head;
newNode->next=n;
head=newNode;}
}
void insertAtEnd(string info){
Node *newNode= new Node();
newNode->info=info;
newNode->next=NULL;
if (head==NULL){
head=newNode;
}
else{
Node *n=head;
while(n->next!=NULL){
n=n->next;
}
n->next=newNode;
}
}
void print(){
Node *start=head;
while(start!=NULL){
cout<<start->info;
start=start->next;}
cout<<"\n";
}
void del(Node *d){
Node *prev=head;
if (d==head){
head=prev->next;
delete prev;
}
else {
while(prev->next!=NULL && prev->next!=d){
prev=prev->next;}
if(prev->next==NULL){ cout<<"Node not found";}
else if(prev->next==d){
prev->next=prev->next->next;
free(d);}
}
}
void printrev(){
Node *current = head;
int len = 0;
while (current != NULL)
{
len++;
current = current->next;
}
for (int x = len; x > 0; x--)
{
current = head;
for (int y = 1; y <= x; y++)
{
if (x == y)
{
cout << current->info;
}
current = current->next;
}
}}
// ========Function only for int============
// void oddfirst(){
// Node *cur=head;
// while(cur!=NULL){
// if(cur->info%2==0){
// cur=cur->next;
// }
// else if(cur->info%2!=0){
// InsertAtStart(cur->info);
// Node *temp=cur->next;
// del(cur);
// cur=temp;
// }
// }
//
//
// }
};