Skip to content

shrutichapadia/npu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npu

insert node: void insertNodeAtTail(LIST*alist, int key) { //find the last node, return its pointer

last node; // create new node using the key; new node; new node->key = keyvalue; newnode->next=NULL;

lastnode->next=newnode; } list : Stack - LIFO

typedef struct stack; { int count; node * stacktop;

}Stack;

push pop create stack delete stack;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published