-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
62 lines (55 loc) · 1.42 KB
/
main.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
#include <iostream>
#include "IntNode.h"
#include "LinkedList.h"
using namespace std;
int main() {
LinkedList list1;
// IntNode* headObj = new IntNode(1); // Create IntNode objects
// IntNode* nodeObj1 = new IntNode(2);
// IntNode* nodeObj2 = new IntNode(3);
// IntNode* nodeObj3 = new IntNode(4);
//
//
// list1.push_front(headObj);
// list1.push_front(nodeObj1);
// list1.push_front(nodeObj2);
// list1.push_front(nodeObj3);
// list1.print();
list1.LoadData("num.txt");
cout << "print linked list" << endl;
list1.printList();
list1.multiplyBy2();
list1.SaveData("num1.txt");
cout << "override insertion operator" << endl;
cout << list1;
return 0;
}
//int main() {
// IntNode* headObj = nullptr; // Create IntNode objects
// IntNode* nodeObj1 = nullptr;
// IntNode* nodeObj2 = nullptr;
// IntNode* nodeObj3 = nullptr;
// IntNode* currObj = nullptr;
//
// // Front of nodes list
// headObj = new IntNode(-1);
//
// // Insert nodes
// nodeObj1 = new IntNode(555);
// headObj->InsertAfter(nodeObj1);
//
// nodeObj2 = new IntNode(999);
// nodeObj1->InsertAfter(nodeObj2);
//
// nodeObj3 = new IntNode(777);
// nodeObj1->InsertAfter(nodeObj3);
//
// // Print linked list
// currObj = headObj;
// while (currObj != nullptr) {
// currObj->PrintNodeData();
// currObj = currObj->GetNext();
// }
//
// return 0;
//}