Follow

Translate

Tuesday, March 15, 2016

POP(STACK, TOP, ITEM):   This procedure deletes the top element of STACK and assigns it to the variable ITEM

1.   [Stack has an ITEM to be remove?]
      If TOP = 0, then: Print:UNDERFLOW, and Return.

3.  Set ITEM: =.STACK[TOP]  [Assigns top element to ITEM]

2.  Set TOP: = TOP -1. [Decrease top by 1 ].

4. Return.

If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :CSE SOLVE If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :CSE SOLVE

Related Posts:

  • What is Overflow? Overflow:   Sometimes new data are to be inserted into a data structure but there is no available space , i.e, the free-storage list is empty.This situation is called overflow. If You want to learn about the techn… Read More
  • What is Binary Trees? Binary Trees:  A binary tree T is defined set of elements, called nodes, such that: (a) T is empty (called the null tree or empty tree), or (b) T constants a distinguished node R, called the root of T, and the remainin… Read More
  • Two basic Operation Of Stack Two basic Operation Of Stack:   (a) "PUSH" is the term used to insert an element into a stack. (b) "POP"   is the term used to remove an element into a stack. If You want to learn about the technol… Read More
  • Shortest Path Algorithm (Shortest Path Algorithm) A directed graph  G with M nodes is maintained in memory by its weight matrix W. This algorithm finds a matrix Q such that Q[I,J] is the length of a shortest path from node VI tonode VJ.Infin… Read More
  • What is underflow? Underflow:  The term underflow refers to the situation where one wants to delete data from a data structure that is empty, The programmer may handle underflow by printing the message UNDERFLOW If You want to learn abou… Read More

0 comments:

Post a Comment