-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ass3_q2.c
180 lines (148 loc) · 2.61 KB
/
Ass3_q2.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
179
180
/*
============================================================================
Name : Ass3_q2.c
Author :
Version :
Copyright : Your copyright notice
Description : Hello World in C, Ansi-style
==
==========================================================================
*/
typedef struct nd
{
int i;
struct nd* next;
}node;
#include <stdio.h>
#include <stdlib.h>
static node* createLinear();
static node* createCircular();
int checktype(node *head);
int main(void) {
node *list1, *list2;
int result;
/*create linear list*/
list1 = createLinear();
if(NULL == list1)
{
return EXIT_FAILURE;
}
/*create circular list*/
list2 = createCircular();
if(NULL == list2)
{
return EXIT_FAILURE;
}
/*check list1 (linear)
* linear returns "true"
* circular returns "false"
*/
printf("checking list1:\n");
result = checktype(list1);
if(result == 0)
{
printf("linked list is circular\n\n");
}
else if(result == 1)
{
printf("linked list is linear\n\n");
}
/*check list2 (circular)
* linear returns "true"
* circular returns "false"
*/
printf("checking list2:\n");
result = checktype(list2);
if(result == 0)
{
printf("linked list is circular\n");
}
else if(result == 1)
{
printf("linked list is linear\n");
}
}
static node* createLinear()
{
int num = 0;
node *head = NULL, *p = NULL;
printf("enter number of list for this linear list:\n");
fflush(stdout);
scanf("%d", &num);
/*create list*/
for(int i = 0; i < num; i++)
{
if(NULL == head)
{
head = (node*)malloc(sizeof(node));
if(NULL == head)
{
return NULL;
}
p = head;
}
else
{
p->next = (node*)malloc(sizeof(node));
if(NULL == p->next)
{
return NULL;
}
p = p->next;
}
}
/*make end of list point to NULL*/
p->next = NULL;
return head;
}
static node* createCircular()
{
int num = 0;
node *head = NULL, *p = NULL;
printf("enter number of list for this circular list:\n");
fflush(stdout);
scanf("%d", &num);
/*create list*/
for(int i = 0; i < num; i++)
{
if(i == 0)
{
head = (node*)malloc(sizeof(node));
if(NULL == head)
{
printf("cannot create head");
return NULL;
}
p = head;
}
else
{
p->next = (node*)malloc(sizeof(node));
if(NULL == p->next)
{
printf("cannot create list");
return NULL;
}
p = p->next;
}
}
/*make end of list point to head*/
p->next = head;
return head;
}
int checktype(node *head)
{
node *p = head;
p = p->next;
/*check for circular and return 0 if circular*/
while(p != NULL)
{
if(p == head)
{
return 0;
}
p = p->next;
}
/*else return 1*/
return 1;
}