Follow

Translate

Wednesday, March 9, 2016

Binary Search



1.  [Initialize segment variables.]
      Set BEG : = LB, END  : = UB and MID = INT((BEG+END)/2).

2.  Repeat Steps 3 and 4 while BEG < END and DATA[MID] != ITEM

3.  If ITEM < DATA[MID], then:

      Set END : = MID - 1.

Else:
    Set BEG : = MID + 1.
[End of Structure.]

4. Set MID : = INT((BEG + END)/2).
     [End of Step 2 Loop.]

5. If DATA[MID] = ITEM, then:
Set LOC : = MID.

Else:
Set LOC : = NULL.
   [End of If Structure.]

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

Related Posts:

  • 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
  • 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
  • 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
  • FINDBHL(INFO, LINK, START, ITEM, LOC, LOCP) Procedure: FINDBHL(INFO, LINK, START, ITEM, LOC, LOCP) 1.  Set SAVE : = START and PTR : = LINK[START].  [Initializes pointer]. 2. Repeat while INFO[PTR] != ITEM and PTR != START.    Set SAVE : = P… Read More

0 comments:

Post a Comment