forked from mehtimsv/ApLabGitPractice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3.cpp
More file actions
196 lines (179 loc) · 4.44 KB
/
3.cpp
File metadata and controls
196 lines (179 loc) · 4.44 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
#include<stdio.h>
#include<stdlib.h>
#define MAX_SIZE 200
int arr[MAX_SIZE];
typedef struct alfa * alfaptr;
struct alfa {
long long x;
alfaptr next;
};
alfaptr rear = NULL, front = NULL;
void push(int x)
{
alfaptr node;
node = (alfaptr)malloc(sizeof(struct alfa));
node->x = x;
if (!front) {
//next ro bayad NULL konim
node->next = NULL;
//rear ro ham bayad mosavie node bezarim.
front = rear = node;
}
else {
rear->next = node;
rear = node;
}
}
void pop()
{
alfaptr node;
if (!front)
printf("ERROR1");
else
{
node = front->next;
front = node;
}
}
void search(int x)
{
alfaptr node = front;
int counter = 0;
int found = 0; // ag 0 bud yani peida nakrde ag 1 shod yani peida krde
while (node) {//dasturaye tuye while baya tu {} gharar begirn ta hamashun sharte whilo dashte bashan.
if (node->x == x) {//dasturaye tuye if ham bayad tu {} gharar begirn ta hamashun sharte ifo dashte bashn.
printf("%d", counter);
//chon peida krde un meghdaro , found ro 1 mikonim.
found = 1;
//break mizarim k ag x ro peida krd dg baghie listo jelo nare.
break;
}
/*else {
printf("ERROR2");
break;
}*/
node = node->next;
//meghdare countero bayad harbar ziad konim.
counter++;
}
//hala bayad bebeinim k ag found mosavie 0 bud yani meghdary k mikhaimo peida nkrde bud error bede.
if(found == 0){
printf("ERROR2");
}
}
void rpop() {//pop last element
alfaptr node = front;
//ag list khali bud
if(!front)
{
printf("ERROR");
exit(0);
}
//ag node haye bady NULL budan valy khode front NULL nabud.
if(front->next == NULL)
{
free(front);
front = NULL;
printf("There is not any node...");
exit(0);
}
//yeki munde be akharin node ro peida konim
while (node->next && node->next->next != NULL)
node = node->next;
//akharin node ro rear bezarim
rear = node->next;
//akharin node ya hamun rear ro pak konim
free(rear);
//akharin node ro NULL konim.
node->next = NULL;
}
void set()
{
alfaptr node = front;
for (int i = 0; i < MAX_SIZE , node; i++, node = node->next)
arr[i] = node->x;
}
int size()
{
alfaptr node = front;
// be count bayad meghdare avalie bedim.
int count = 0;
while (node) {
count++;
node = node->next;
}
return count;
}
void show()
{
//node ro chon mikhaym to for estefade konim tarif mikonim va barabare front mizarim.
alfaptr node = front;
//agar front NULL nabashe bayadchap kne listo.
if (front) {
//bara inke ta hamun node k vojud dare jelo bere bayad shartaye for ro yekm taghir bedim.
for (int i = 0; i < MAX_SIZE ,node; i++ , node = node->next){
printf("%d ", arr[i]);
}
}
else
{
printf("ERROR3");
}
}
int average()
{
if(!front) {
printf("Error");
exit(0);
}
alfaptr node = front;
//be count bayad meghdare avalie bedim.
int sum = 0, count = 0;
while (node) {
sum += node->x;
count++;
node = node->next;
}
//bayad cast konim k khoruji hatman int bashe.
return (int)sum / count;
}
int main()
{
int cmd;
long long int x;
while (1)
{
scanf("%d", &cmd);
switch (cmd)
{
case 1://push
scanf("%lld", &x);
push(x);
break;
case 2://pop
pop();
break;
case 3://rpop
rpop();
break;
case 4://search
scanf("%lld", &x);
search(x);
break;
case 5://set
set();
break;
case 6://show
show();
break;
case 7://size
printf("%d", size());
break;
case 8://average
printf("%d" ,average());
break;
case 10:
exit(0);
}
}
}