-
Notifications
You must be signed in to change notification settings - Fork 0
/
LinkedListSearch.cpp
70 lines (56 loc) · 998 Bytes
/
LinkedListSearch.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
#include <iostream>
using namespace std;
struct Node {
int data;
Node* next;
Node(int data): data(data), next(nullptr) {}
};
class LinkedList {
private:
Node* head;
Node* tail;
public:
LinkedList();
void append(int );
bool search(int );
};
LinkedList::LinkedList() {
head = nullptr;
tail = nullptr;
}
void LinkedList::append(int val) {
Node* newNode = new Node(val);
if (head == nullptr) {
head = newNode;
tail = newNode;
}
else if (tail == head) {
head->next = newNode;
tail = newNode;
}
else {
tail->next = newNode;
tail = newNode;
}
}
bool LinkedList::search(int val) {
for (Node* curr = head; curr != nullptr; curr = curr->next) {
if (curr->data == val) {
cout << "True" << endl;
return true;
}
}
cout << "False" << endl;
return false;
}
int main() {
LinkedList list1;
list1.append(1);
list1.append(2);
list1.append(3);
list1.append(4);
list1.append(5);
list1.append(6);
list1.search(4); //True
list1.search(10); //False
}