Follow

Translate

Monday, March 21, 2016

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, then : Write: ITEM not in list, and Exit.

3.  Set LINK[LOCP] : = LINK[LOC].   [Deletes node.]

4.  [Return deleted node to the AVAIL list.]
    Set LINK[LOC] : = AVAIL and AVAIL : = LOC.

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

Related Posts:

  • Binary Searching Array Element Binary Searching Array Element Let DATA be the following sorted 13-element array: DATA: 11, 22, 30, 33, 40, 44, 55, 60, 66, 77, 80, 88, 99 We apply the binary search to DATA for different values of ITEM. (a)  Suppos… Read More
  • Binary Search Algorithm 4.6:  (Binary Search)  BINARY(DATA, LB, UB, ITEM, LOC) Here DATA ia a sorted array with lower bound LB and upper bound UB, and ITEM is a given item of information. The variables BEG, END and MID denote,… Read More
  • Arrays, Records and Pointers Arrays, Records and Pointers  The Operation one normally performs on any linear structure. (a) Traversal: Processing each element in the list. (b) Search: Finding the location of the element with a given value or the… Read More
  • Inserting Into a Linear Array Inserting Into a Linear Array Algorithm:  (Inserting into a Linear Array) INSERT (LA, N, K, ITEM) Here LA is a linear array with N elements and K is a positive integer such that K < N. This algorithms inserts an ele… Read More
  • Traversing Linear Arrays Algorithm 4.1: (Traversing a Linear Array) Here LA is a linear array with lower bound LB and upper bound UB. This algorithm traverses LA applying an operation Process to each element of LA. 1. [Initialize counter.] Set K :… Read More

0 comments:

Post a Comment