-
Notifications
You must be signed in to change notification settings - Fork 0
/
Linkedlist_consept.c.c
99 lines (97 loc) · 1.87 KB
/
Linkedlist_consept.c.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
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
struct node
{
int data;
struct node *next;
}*head;
void creatList(int n);
void insertNodeAtBeginning(int data);
void displayList();
int main()
{
clrscr();
int n , data;
printf("Enter the Total Number of nodes : ");
scanf("%d",&n);
creatList(n);
printf("\nData in the list\n");
displayList();
printf("\nEnter data to insert at beginning of list :");
scanf("%d",&data);
insertNodeAtBeginning(data);
printf("\nData in the List\n");
displayList();
return 0;
}
void creatList(int n)
{
struct node * newNode,* temp;
int data , i;
head= (struct node*)malloc(sizeof(struct node));
if(head==NULL)
{
printf("unable to allocate memory.");
}
else
{
printf("Enter the data of node 1 :");
scanf("%d",&data);
head->data=data;
head->next=NULL;
temp=head;
for(i=2;i<=n;i++)
{
newNode=(struct node *) malloc(sizeof(struct node));
if(newNode==NULL)
{
printf("unable to allocate memory.");
break;
}
else
{
printf("Enter the data of node %d :",i);
scanf("%d",&data);
newNode->data=data;
newNode->next=NULL;
temp->next=newNode;
}
}
printf("Singly Linked List Created Successful\n");
}
}
void insertNodeAtBeginning(int data)
{
struct node *newNode;
newNode=(struct node*)malloc(sizeof(struct node));
if(newNode==NULL)
{
printf("unable to allocate memory.");
}
else
{
newNode->data=data;
newNode->next=head;
head= newNode;
printf("Data Inserted Successfully\n");
}
}
void displayList()
{
struct node *temp;
if(head==NULL)
{
printf("List is Empty.");
}
else
{
temp=head;
while(temp!=NULL)
{
printf("Data=%d\n",temp->data);
temp=temp->next;
}
}
getch();
}