Showing all posts tagged "Push Explained Single Linked List"
SINGLE LINKED LIST
The single list is a structure node with data field and a pointer to struct .
node declaration is
struct node
{
int data;
struct node *next;
};The operations on a single linked list
push(int data)
delete (int data)
print(struct *head )
PUSH operation:
...
Posted on February 25th, 2019