Follow

Translate

Wednesday, March 16, 2016

QDELETE(QUEUE, N, FRONT, REAR, ITEM)


1.    [Queue already filled?]
          If FRONT = NULL and REAR = N, or if FRONT = REAR + 1, then:
              Write: UNDERFLOW, and Return.

2.  Set ITEM : = QUEUE[FRONT]

3.             [Find new value of REAR.]

                         If  FRONT : = REAR, then:  [ Queue has only one element to start]
                       If  FRONT : = NULL and REAR : = NULL
                       
Else if FRONT = N, then:

Set FRONT : = 1.

Else :
              Set REAR : = REAR + 1 .

[End of  If structure]

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

Related Posts:

  • Linear Search Algorithm 2.4 Linear Search Algorithm 2.4: (Linear Search) A Linear Array DATA with N elements and a specific ITEM of information are given. This algorithm finds the location LOC of ITEM in the array DATA or sets LOC = 0. 1.  [Ini… Read More
  • Complexity Of Algorithms Complexity Of Algorithms: There are two case for describing in the complexity of algorithms: (1) Worst Case: The Maximum value of f(n) for any possible input. (2) Average Case: The expected value of f(n) Sometimes we al… Read More
  • Algorithm Largest Element in Array Algorithm 2.1: (Largest Element in Array) A nonempty array DATA with N numerical values is given.This algorithm finds the location LOC and the value MAX of the largest element of DATA.The variable K is used as a counter. St… 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
  • 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