-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinkedlist.cpp
More file actions
55 lines (43 loc) · 772 Bytes
/
linkedlist.cpp
File metadata and controls
55 lines (43 loc) · 772 Bytes
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
#include <iostream>
using namespace std;
struct Node {
int data;
Node* next;
};
Node* head = NULL;
void insert(int value) {
Node* newNode = new Node;
newNode->data = value;
newNode->next = head;
head = newNode;
}
void remove() {
if(head == NULL) {
cout << "List is empty!" << endl;
} else {
Node* temp = head;
head = head->next;
delete temp;
}
}
void print() {
Node* temp = head;
while(temp != NULL) {
cout << temp->data << " ";
temp = temp->next;
}
cout << endl;
}
int main()
{
// insert elements into the list
insert(1);
insert(2);
insert(3);
insert(4);
insert(5);
// remove an element from the list
remove();
// print the elements of the list
print();
}