Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Programming \ Implement binary search algorithm in C language     - Oracle physical storage structure outline (Database)

- Comparison of one-time transaction and CTE insert data (Database)

- Use mysqldump MySQL database backup - Linux Shell Scripting (Database)

- Timing Nginx logs cut and remove the log records of the specified number of days before (Server)

- Java foundation comb: Array (Programming)

- Copy U disk files to the Linux system on a virtual machine (Linux)

- How to back up Debian system backupninja (Linux)

- Linux Learning Notes: Users and Groups (Linux)

- Linux use iptables ban Ping (Linux)

- Let Linux operating system more secure (Linux)

- Python in os.path Magical (Programming)

- Zabbix installation under Linux (Server)

- How to use the Docker Machine cluster deployment Swarm (Server)

- RCU lock in the evolution of the Linux kernel (Linux)

- Detailed software to run UnixBench (Linux)

- Installation of Gitlab under Ubuntu (Linux)

- Installation and configuration of phpMyAdmin under CentOS (Database)

- Linux Network Programming - libnet Guide (Programming)

- iptables using summary (Linux)

- Construction LVM-based raw device Oracle10g Database on Oracle Linux 5.11 (Database)

 
         
  Implement binary search algorithm in C language
     
  Add Date : 2018-11-21      
         
         
         
  Binary search algorithm thinking is very simple, it is an ordered sequence of binary search, where I use a binary search integer array order. If implemented in C, then we need to pay attention to the following aspects:

1. How to determine the lookup is completed, the return value is defined meanings, define exit loop condition

2. How to deal with border issues, such as 123 of this sequence, when we're looking for 1 or 3, it will make the program appear BUG

3. For the number of columns, we usually use plastic storage under standard, remove the standard binary search if the intermediate numbers, what kind of problem occurs? Whether these problems will affect our search, if the problem is how to avoid?

Typically, as a beginner, I think even a binary search is too simple, not worth mentioning, the recent reflection, binary search algorithm for the requirements of the theory is not very high, but if it is put into the feasibility of the program code , then we need to think about many of the details, otherwise write the code is error-prone.

How to solve the first problem, because we understand the idea of ​​binary search is actually a binary search, to have the left margin and right margin we can determine the intermediate element, when the left edge of the right boundary coincides with the time, then find the object becomes an element, if it is not to find an object request, then look in the collection will not have the required elements. So that we clearly define the parameters needed to come out, and quit the Find conditions. We need a left border and right border, as well as the middle element, if the right margin smaller (larger than the left and right) than the left margin when the loop exits, returns an exception. If not, perform a lookup statement.

Here's how to design it to find the statement, if combined with the second and third question, we can readily write the code:

while (left <= right)
{
    mid = (left + right) / 2;
    if (x> mid)
    left = mid;
    else if (x     right = mid;
    else
    return mid;
}
return error;

Obviously doing so it is too good, according to the ideas of mathematics, this is simply not eligible borders, considering the C language will be automatically discarded plastic decimals, then the left boundary is entirely possible that we write but right boundary is never to take, if the intermediate value taken to a non-integer, it will affect other aspects of our search results, the answer is no, if discarded automatically generated status decimal, only to find only affect us in an ordered sequence of elements in a position to find the sub-segment length, and will not affect our search results, if you want to solve the border issue, we can make partial segment generated boundary shift, since the mid element has been judged too, so when we segment boundary segments can discard mid element, so that the border is mid + 1 or mid-1, and we will complete the binary search of an array of integers, codes are as follows:

#include // binary search algorithm that is the test case
int BinySerch (int * arr, int x, int lengh) // design parameters, as is the integer array, so we have to pass him
{// Array length downgrade occur when the Senate otherwise
int left = 0, right = lengh - 1;
int mid;
while (left <= right)
{
mid = left + (right - left) / 2;
if (x {
right = mid - 1;
}
else if (x> arr [mid])
{
left = mid + 1;
}
else
{
return mid;
}
}
return -1;
}
int main () // test case
{
int x = 0;
int arr [11] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
int lengh = sizeof (arr) / sizeof (arr [0]);
for (int i = 0; i <12; i ++)
{
printf ( "% d", BinySerch (arr, i, lengh));
}
system ( "pause");
return 0;
}
     
         
         
         
  More:      
 
- Protection Docker container Notice (Server)
- linux remote control software (Linux)
- Objective-C basic program structure (Programming)
- MySQL DATE_FORMAT () function (Database)
- Oracle Database Delete Delete million or more common method of heap table data (Database)
- After restarting network services, DNS address failure (Linux)
- Help you make Git Bisect (Linux)
- Linux daemon (Linux)
- PHP generates a random password several ways (Programming)
- To install Python-Pip and Fabric under CentOS / Ubuntu (Linux)
- Android and OpenCV2.4.4 build an image processing framework (2013 edition) (Linux)
- Linux terminal interface font color settings (Linux)
- AFNetworking + Nginx HTTPS communication server + (Server)
- Get basic information about Linux server script (Server)
- Getting Started with Linux: Learn how to upgrade Docker in Ubuntu (Server)
- Ubuntu 14.04 LTS 64-bit install GNS3 1.3.7 (Linux)
- MySQL5.7 implement virtual column expression index (Database)
- Linux Mint 17.2 64 bit installation Docker and management software seagull (Linux)
- Mounting kit under Fedora Linux (Linux)
- Nginx introduced Dynamic Module Architecture (Server)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.