-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCLL_By_DLL.c
61 lines (56 loc) · 1006 Bytes
/
CLL_By_DLL.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
#include<stdio.h>
#include<stdlib.h>
typedef struct st{
struct st* lptr;
int info;
struct st* rptr;
}Node;
Node *start=NULL;
void add(int value){
Node *newptr=NULL, *ptr;
newptr=(Node*)malloc(sizeof(Node));
newptr->info=value;
newptr->rptr=newptr->lptr=NULL;
if(start==NULL){
start=newptr;
}
else{
ptr=start;
while(ptr->rptr!=NULL){
ptr=ptr->rptr;
}
ptr->rptr=newptr;
newptr->lptr=ptr;
newptr->rptr=start;
start->lptr=newptr;
}
}
void display(){
Node *ptr, *sptr;
ptr=start;
sptr=ptr->rptr;
while(ptr->rptr!=start){
printf("%d<->", ptr->info);
ptr=ptr->rptr;
}
printf("NULL\n");
}
int main(){
char choice;
int count=0, value;
while(1){
printf("do you want to insert or not? y/n? ");
scanf(" %c", &choice);
if(choice=='y' || choice=='Y'){
printf("Enter number: ");
scanf("%d", &value);
add(value);
}
else{
break;
}
}
printf("\nLINKED LIST:\t");
display();
return 0;
}