Follow

Translate

Sunday, March 20, 2016

Deleting the Node Following a Given Node




1  If LOCP = NULL, then:

    Set START : = LINK[START].     [Deletes first node]

Else: 
       Set LINK[LOCP]  : = LINK[LOC].    [Delete node N.]

[End of structure .]

2.      [Return  deleted node to the AVAIL list.]

     Set LINK[LOC]  : = AVAIL and AVAIL : = LOC

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

Related Posts:

  • Searching A LINK LIST LIST Is Sorted:   Algorithm:  SRCHSL(INFO, LINK, START, ITEM, LOC) LIST is a Sorted list in memory. This algorithm finds the location LOC of the node where ITEM first appears in LIST, or set… Read More
  • Stack Lesson One What is mean Stack? Stack: A Stack, also called a last-in-first-out(LIFO) system, is a linear list in which insertions and deletions can take place only at one end, called the top If You want to learn about the technology,… Read More
  • Bubble Sort (Bubble Sort) BUBBLE(DATA, N) Here DATA is an array with N elements. This algorithm sorts the elements in DATA. 1.   Repeat Steps 2 and 3 for K = 1 to N - 1. 2.   Set PTR : = 1.    … Read More
  • Lesson One Data Stucture What is Data Structures? Data Structure: Data may be organized on many different ways; The logical or mathematical model of a particular organization of data is called a data structure. If You want to learn about the techn… Read More
  • We simulate the operation PUSH(STACK, ITEM) 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&nbs… Read More

0 comments:

Post a Comment