#include
#include
struct del
{
int number;
struct node *link;
};
typedef struct del node;
/*struct node *head;
struct node *new;
struct node *n1;
s
truct node *key;*/
void main()
{
node *find(node *p,int a);
int key;
node *n1;
node *head;
node *new;
node *p;
printf("ENTER THE NODE TO BE DELETED\n");
scanf("%d",&key);
if(hea
d->number == key)
{
new = (node*)malloc(sizeof(node));
p = head->link;
free(head);
head = p;
}
else
{
n1 = find(head,key);
if(n1 == NULL)
printf("NODE IS NOT FOUND\m");
else
{
p = n1->link->link;
free(n1->link);
n1->link = p;
}
}
}
node *find(node *list,int key)
{
if(list->link->number == key)
return list;
else
if(list->link->link == NULL)
return NULL;
else
find(list->link,key);
}
ShoutBox
Blog Archive
-
▼
2010
(22)
-
▼
January
(22)
- Linklist Node delete program in C
- Link List program in c
- Assembler program in C
- Accessing array in C using pipe
- Fork IPC program in C
- Executing another program in C
- Time program in C
- Sorting Program in C using fork and pipe
- Use of vfork in Unix C program
- Fork and Wait in Unix IPC C program
- Pipes in Unix IPC
- Complete sum program in Unix IPC
- Sort program in C using Unix IPC fork and pipe
- Shared memory in Unix C program
- Sum of N numbers program in C using Fork and Pipe IPC
- Inter process communication with fork and pipe
- Fork and Pipe program in C
- Fork with Pipe Program in C
- Another Fork program in C
- Simple Fork Program in Linux/Unix C
- Recursive File System Search Program in C
- Assembler Program in C
-
▼
January
(22)
Join With Me...
3:31 AM
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment