-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsingle_linked_list.cpp
59 lines (47 loc) · 1.05 KB
/
single_linked_list.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
#include "iostream"
class Node{
public:
int data;
Node* next;
};
void printList(Node* n){
while(n!=NULL){
std::cout << n->data << "\n";
n=n->next;
}
}
Node* push(Node* head,int data){
Node* tmp = new Node();
tmp->data=data;
tmp->next=head;
return tmp;
}
void append(Node** head,int data){
Node* tmp= new Node();
tmp->data=data;
tmp->next=NULL;
Node* q=*head;
while(q->next!=NULL){
q=q->next;
}
q->next=tmp;
}
int main(){
Node* head = NULL;
Node* second = NULL;
Node* third = NULL;
// allocate 3 nodes in the heap
head = new Node();
second = new Node();
third = new Node();
head->data = 1; // assign data in first node
head->next = second; // Link first node with second
second->data = 2; // assign data to second node
second->next = third;
third->data = 3; // assign data to third node
third->next = NULL;
head=push(head,55);
append(&head,90);
printList(head);
return 0;
}