Follow

Translate

Wednesday, March 16, 2016

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


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

2.             [Find new value of REAR.]

                       If  FRONT : = NULL, then : [Queue initially empty.]
                          Set FRONT : = 1 and REAR : = 1

Else :
              Set REAR : = REAR + 1 .

[End of  If structure]

3.  Set QUEUE[REAR] : = ITEM.     [This inserts new element]

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

Related Posts:

  • Warshall's Algorithm (Warshall's Algorithm) A directed graph  G with M nodes is maintained in memory by its adjacency matrix A. This algorithm finds the (Boolean) path matrix P of the graph-G 1.  Repeat for I, J = 1, 2......, M: [In… 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
  • 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
  • (Matrix Multiplication) MATMUL(A, B, C, M, P, N) (Matrix Multiplication) MATMUL(A, B, C, M, P, N) Le A be an M * P matrix array, and let B be a P * N matrix array. This algorithm stores the product of A and B in an M * N matix array C. 1.  Repeat Steps 2 to 4 for I… Read More
  • 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

0 comments:

Post a Comment