Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions as2_he_1.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,16 +142,9 @@ void main()
scanf("%d",&data);
insertlast(data);
}
printf("list are\n");
printNode();
printf("enter elements to be searched\n");
scanf("%d",&s);
search(s);
printf("list is\n");
printNode();



/*insertlast(1);
insertlast(1);
insertlast(2);
insertlast(3);
insertlast(4);
Expand All @@ -162,6 +155,7 @@ void main()
search(6);
//deleteLast();
printf("after serch\n");
printNode();*/
printNode();


}