Follow

Translate

Thursday, March 17, 2016

We simulate the operation PUSH(STACK, ITEM)

(b)  We simulate the operation PUSH(STACK, ITEM):

1.  Since TOP = 3, control is transffered to Step 2.

2.  ITEM = ZZZ.

3. TOP  = 3 - 1 = 4.

4.Return.
Observe That STACK[TOP] = STACK[2] = YYY is now the top element in the stack

Related Posts:

  • What is Header Linked List?  Header Linked List:  A header linked list is a linked list which always contains a special node, called the header node, at the beginning of the list. The following are two kinds of widely used header lists: (1… Read More
  • Traversing a linked List Algorithm: (Traversing a linked List) Let LIST be a linked list in memory. This algorithm traverse LIST, applying an operation PROCESS to each element of LIST. The variable PTR points to the node currently being processe… Read More
  • POP_LINKSTACK(INFO, LINK, TOP, AVAIL, ITEM) POP_LINKSTACK(INFO, LINK, TOP, AVAIL, ITEM) This procedure deletes the top element of a linked stack and assigns it to the variable ITEM. 1.    [Stack has an item to be removed?]   If TOP = NULL… Read More
  • TRAVERSING A LINKED LIST TRAVERSING A LINKED LIST:   Let List be a linked list in memory stored in linear arrays INFO and LINK with START pointing to the first element and NULL indicating the end of LIST. Suppose we want to traverse LIST i… Read More
  • PUSH_LINKSTACK(INFO, LINK, TOP, AVAIL, ITEM) PUSH_LINKSTACK(INFO, LINK, TOP, AVAIL, ITEM) This procedure pushes an ITEM into a linked stack 1.    [Avail Space?]   If AVAIL = NULL, then Write         … Read More

0 comments:

Post a Comment