-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinkListProgram16.c
142 lines (111 loc) · 3.28 KB
/
LinkListProgram16.c
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#include<stdio.h>
#include<stdlib.h>
// Terminal Colors just to heighlight the nodes .. and its data
#define MAG "\x1B[35m"
#define CYN "\x1B[36m"
#define RESET "\x1B[0m"
// Structure of a particular node ...
typedef struct node{
int data;
struct node *nextNode;
}SLLNode;
// Function that creates a indivisual node and assigns feilds of the node
SLLNode *createNode(int num){
SLLNode *newNode = (SLLNode*)malloc(sizeof(SLLNode));
newNode->nextNode = NULL;
newNode->data = num;
return newNode;
}
// This function will count the nodes in the List
int countNodes(SLLNode **headNode){
SLLNode *dummyNode = *headNode;
int count = 0;
for (; dummyNode != NULL; count++)
dummyNode = dummyNode -> nextNode;
printf("\t\t\nodes total = %d",count);
return count;
}
// At the time of Termination of program this function is called that will free the memory of heap ...
void freeAllNodes(SLLNode **headNode){
if (*headNode == NULL){return;}
if ((*headNode)->nextNode == NULL)
free(*headNode);
else{
while ((*headNode)->nextNode != NULL){
SLLNode *freeNode = *headNode;
*headNode = (*headNode)->nextNode;
free(freeNode);
}
}
}
// This function will add a new Node to the end of the nodes ...
void addNewNode(SLLNode **headNode, int num){
SLLNode *newNode = createNode(num);
if (*headNode == NULL){
*headNode = newNode;
}else{
SLLNode **dummyNode = headNode;
while((*dummyNode)->nextNode != NULL){
dummyNode = &(*dummyNode) -> nextNode;
}
(*dummyNode)->nextNode = newNode;
}
}
//
int llCopy(SLLNode **srcList, SLLNode **destList){
if (*srcList == NULL) return -1;
SLLNode *destCpyList = *srcList;
SLLNode *dummyNode = createNode((*srcList)->data);
SLLNode *dummyCopy = dummyNode;
int srcListCount = countNodes(&(*srcList));
destCpyList = destCpyList -> nextNode;
for (int i = 0; i < srcListCount-1; i++){
dummyNode -> nextNode = createNode(destCpyList->data);
dummyNode = dummyNode -> nextNode;
destCpyList = destCpyList -> nextNode;
}
*destList = dummyCopy;
return 0;
}
// This function will display the list of all the created nodes ...
void displayNodes(SLLNode **headNode){
SLLNode *dummyNode = *headNode;
while(dummyNode != NULL){
printf("|\033[1;35mdata: %d \033[0| \033[1;36m->\033[0m "RESET,dummyNode->data);
dummyNode = dummyNode->nextNode;
}
}
// Driver code containing a menu to display options ...
void main(void){
int choice, attempt = 1, data, viewListChoice, start, end;
SLLNode *headNodeListOne = NULL, *headNodeListTwo = NULL;
do{
printf("\nmenu:\n");
printf("1] Add new Node (List 1)? : \n");
printf("2] Display Nodes ? : \n");
printf("3] Copy nodes of List 1 @ List 2 ? :\n");
printf("4] Exit :\n");
printf("Enter a option --> ");
scanf("%d",&choice);
switch(choice){
case 1: printf("\nEnter a data to add in Node :");
scanf("%d",&data);
addNewNode(&headNodeListOne,data);
break;
case 2: printf("\n\tView list 1 or 2 [1/2] :");
scanf("%d",&viewListChoice);
if (viewListChoice == 1)
displayNodes(&headNodeListOne);
else
displayNodes(&headNodeListTwo);
break;
case 3: llCopy(&headNodeListOne,&headNodeListTwo);
break;
case 4: freeAllNodes(&headNodeListTwo);
exit(EXIT_SUCCESS);
break;
default:
printf(CYN"\t\tTry again ..."RESET);
}
}while(1);
}