-
Notifications
You must be signed in to change notification settings - Fork 0
/
LinkedList65.c
178 lines (146 loc) · 2.82 KB
/
LinkedList65.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#include<stdio.h>
#include<stdlib.h>
#include<stdbool.h>
struct node
{
int data;
struct node *next;
};
typedef struct node NODE;
typedef struct node* PNODE;
typedef struct node** PPNODE;
void InsertFirst(PPNODE First, int No)
{
PNODE newn = NULL;
newn = (PNODE)malloc(sizeof(NODE));
newn->data = No;
newn->next = NULL;
if(*First == NULL)
{
*First = newn;
}
else
{
newn->next = *First;
*First = newn;
}
}
void Display(PNODE First)
{
while(First != NULL)
{
printf("| %d |->",First->data);
First = First -> next;
}
printf("NULL\n");
}
int Count(PNODE First)
{
int iCnt = 0;
while(First != NULL)
{
iCnt++;
First = First -> next;
}
return iCnt;
}
int Addition(PNODE First)
{
int iSum = 0;
while(First != NULL)
{
iSum = iSum + (First->data);
First = First->next;
}
return iSum;
}
int EvenCount(PNODE First)
{
int iCount = 0;
while(First != NULL)
{
if((First->data)%2==0)
{
iCount++;
}
First = First->next;
}
return iCount;
}
int OddCount(PNODE First)
{
int iCount = 0;
while(First != NULL)
{
if((First->data)%2!=0)
{
iCount++;
}
First = First->next;
}
return iCount;
}
int FrequencyCount(PNODE First,int No)
{
int iCount = 0;
while(First != NULL)
{
if((First->data) == No)
{
iCount++;
}
First = First->next;
}
return iCount;
}
bool ReturnSearch(PNODE First, int No)
{
bool bFlag = false;
while(First != NULL)
{
if((First->data) == No)
{
bFlag = true;
break;
}
First = First->next;
}
return bFlag;
}
int main()
{
PNODE Head = NULL;
int iRet = 0;
bool bRet = false;
int iNo = 0;
InsertFirst(&Head,42);
InsertFirst(&Head,10);
InsertFirst(&Head,5);
InsertFirst(&Head,21);
InsertFirst(&Head,10);
InsertFirst(&Head,21);
InsertFirst(&Head,11);
Display(Head);
printf("Enter Number : \n");
scanf("%d",&iNo);
iRet = Count(Head);
printf("Number of Nodes are %d\n",iRet);
iRet = Addition(Head);
printf("Addition of Nodes is : %d\n",iRet);
iRet = EvenCount(Head);
printf("The Even Numbers in the Linked List is : %d\n",iRet);
iRet = OddCount(Head);
printf("The Odd Numbers in the Linked List are : %d\n",iRet);
iRet = FrequencyCount(Head,iNo);
printf("The Frequency of that number is : %d\n",iRet);
bRet = ReturnSearch(Head,iNo);
if(bRet == true)
{
printf("The Element is present in the Linked List\n");
}
else
{
printf("The Elemenet is not present\n");
}
return 0;
}