码迷,mamicode.com
首页 > 编程语言 > 详细

[数据结构] 快速排序+折半搜索

时间:2020-07-03 21:33:49      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:color   quick   巩固   turn   数据结构   class   排序   return   length   

 1 数据结构的练习与巩固
 2 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 3 //折半搜索
 4 int Quick_Search(int List[], int Length, int Number)
 5 {
 6     int Low, High, Middle;
 7     Low = 0;
 8     High = Length-1;
 9     
10     while (High >= Low)
11     {
12         Middle = (Low + High) / 2;
13         if (List[Middle] == Number)
14             return Middle;
15         if (List[Middle] < Number)
16             Low = Middle + 1;
17         if (List[Middle] > Number)
18             High = Middle - 1;
19     }
20     return -1;
21 }
22 
23 //快速排序
24 void Quick_Sort(int List[], int Low, int High)
25 {
26     int i, j;
27     i = Low;
28     j = High;
29     int Key = List[Low];
30 
31     if(Low < High)
32     {
33         while (j > i)
34         {
35             while (List[j] >= Key && j > i)
36                 j--;
37             if (j > i)
38                 List[i++] = List[j];
39 
40             while (List[i] < Key && j > i)
41                 i++;
42             if (j > i)
43                 List[j--] = List[i];
44         }
45         List[i] = Key;
46 
47         Quick_Sort(List, Low, i - 1);
48         Quick_Sort(List, i + 1, High);
49     } 
50 }

 

[数据结构] 快速排序+折半搜索

标签:color   quick   巩固   turn   数据结构   class   排序   return   length   

原文地址:https://www.cnblogs.com/nagishiro/p/13232399.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!