Follow

Translate

Friday, March 11, 2016

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 element ITEM into the Kth position in LA.


1.    [Initialize Counter.]  Set J : = N.

2. Repeat Steps 3 and 4 while J > K.

3.     [Move Jth element downward.]   Set LA[J + 1] : = LA[J].

4.     [Decrease Counter.]  Set J = J-1.
           [End of Step 2 loop]

5.    [Insert Element.]   Set LA[K] : = ITEM.

6.   [Reset N.]  Set N : = N + 1.

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

Related Posts:

  • SRCHHL(INFO, LINK, START, ITEM, LOC) Algorithm: SRCHHL(INFO, LINK, START, ITEM, LOC) LIST is a circular header list in memory. This algorithm finds the location LOC of the node where ITEM first appears in LIST or sets LOC = NULL. 1.   Set PTR :… Read More
  • DELETION FROM A LINKED LIST DELETION FROM A LINKED LIST :   Let LIST be a linked list with a node N between nodes A and B Suppose node N is to be deleted from the linked list.The schematic diagram of such a deletion appears.The deletion… Read More
  • Traversing a Circular Header List (Traversing a Circular Header List)  Let LIST be a circular header list in memory.  This algorithm traverses LIST, applying an operation PROCESS to each node of LIST. 1.   Set PTR : = LINK[START]. … Read More
  • DELETION FROM A LINKED LIST DELETION FROM A LINKED LIST :   Let LIST be a linked list with a node N between nodes A and B Suppose node N is to be deleted from the linked list.The schematic diagram of such a deletion appears.The deletion… Read More
  • Traversing a Circular Header List (Traversing a Circular Header List)  Let LIST be a circular header list in memory.  This algorithm traverses LIST, applying an operation PROCESS to each node of LIST. 1.   Set PTR : = LINK[START]. … Read More

0 comments:

Post a Comment