Home »
» PUSH_LINKSTACK(INFO, LINK, TOP, AVAIL, ITEM)
Unknown 9:12:00 AM
1. [Avail Space?] If AVAIL = NULL, then Write
OVERFLOW AND Exit
2. [Remove first node from AVAIL list]
Set NEW : = AVAIL and AVAIL : = LINK[AVAIL].
3. Set INFO[NEW] : = ITEM [Copies ITEM into new node]
4. Set LINK[NEW] : = TOP [New node points to the original top node in the stack]
5. Set TOP = NEW [reset TOP to point to the new node at the top of the stack]
6. Exit.
If You want to learn about the technology, computer science & engineering, web programming, freelancing, earning please click here :
CSE SOLVE
Related Posts:
FINDA(INFO, LINK, START, ITEM, LOC)
FINDA(INFO, LINK, START, ITEM, LOC)
This procedure finds the location LOC of the last node in a sorted list such that INFO[LOC] < ITEM, or sets LOC = NULL.
1. [List of empty?] If START = NULL, then … Read More
COPY(INFO, LINK, NAME1, NAME2, AVAIL)
COPY(INFO, LINK, NAME1, NAME2, AVAIL)
This algorithm makes a copy of a list NAME1 using NAME2 as the list pointer variable of the new list.
1. Set NAME2 : = NULL. [Forms empty … Read More
Insertion Algorithms
Insertion Algorithms:
(a) Checking to see if space is available in the AVAIL list. If not, that is, if AVAIL = NULL, then the algorithm will print the message OVERFLOW.
(b) Removing the first node fr… Read More
DELLOCHL(INFO, LINK, START, AVAIL, ITEM)
DELLOCHL(INFO, LINK, START, AVAIL, ITEM)
1. [Use Procedure FINDBHL to find the location of N and its preceding node.]
Call LINDBHL(INFO, LINK, START, ITEM, LOC, LOCP).
2. If LOC = NULL, the… Read More
INSERT(INFO, LINK, START, AVAIL, ITEM)
Algorithm: INSERT(INFO, LINK, START, AVAIL, ITEM)
This algorithm inserts ITEM into a sorted linked list.
1. [Use Procedure FINDA to find location of the node preceding ITEM]
Call FINDA(INFO, LINK, … Read More
0 comments:
Post a Comment