程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C >> 關於C >> 二分查找的一個版本

二分查找的一個版本

編輯:關於C

 

#include <stdio.h>

#include <stdlib.h>

#define  NUM   100

typedef struct node

{

        int x;

        int y;

}node ;

node  global[NUM]={-999};

int  count=0;

int find(int left,int right,node x)

{

        int  mid =(left +right )/2;

        if (left==mid )

        {  

                 if(  x.x==global [right].x)

                        return  right;

                else  if(  x.x==global [left].x)

                        return  left;

                else

                        return   -1;

        } 

        else if( x.x > global [ mid  ].x  )

                return  find  ( mid  ,right ,x );

        else

                return  find (left ,  mid ,  x);

 

}

 

int  main()

{

        int i=0,j=0;

        struct node temp;

        for(i=0;i<NUM;i++)

        {

                j=i*i;

                temp.x=j;

                printf("  (%d)  ",temp.x);

                global[i].x=j;

        }

        printf("\n");

        temp.x=0;

        find ( 0,NUM-1,temp);

        for(i=0;i<NUM;i++)

        {

                temp.x=global[i].x;

                printf("result is  {%d } \n",  find ( 0 , NUM-1 , temp));

        }

 

        printf("new\n ");

 

        while ( scanf("%d",&j) && j )

        {

                temp.x=j;

                printf("result is  {%d } \n",  find ( 0 ,NUM-1 , temp));

        }

}

摘自 chenbingchenbing的專欄

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved