二分排序与二分查找

  • Post author:
  • Post category:其他



1、规定排序的实现

分治法的三步法:

划分问题:(把序列二分),

递归求解:(分别对左右子序列递归排序)

合并结果:(根据左右两个有序的子序列,依次取两个子序列的最小元素中的最小者加到结果中去)

实现如下:



  1. #include <iostream>





  2. using




    namespace


    std;




  3. void


    mergeSort(


    int


    * a,


    int


    x,


    int


    y,


    int


    * t)


    //归并排序,t为辅助空间




  4. {


  5. if


    (y-x > 1)


    //由于是区间[x,y),非空则有y-x>=1,而1个元素的子序列已经有序




  6. {


  7. int


    m = x + (y-x)/2;


    //中点




  8. mergeSort(a,x,m,t);

  9. mergeSort(a,m,y,t);



  10. //合并





  11. int


    p = x, q = m, k = x;



  12. while


    (1)


  13. {


  14. if


    (p < m){



    //左非空





  15. if


    (q < y){



    //右非空





  16. if


    (a[p] < a[q]) t[k++] = a[p++];



  17. else


    t[k++] = a[q++];


  18. }


  19. else


    t[k++] = a[p++];


  20. }


  21. else


    {



    //左空





  22. if


    (q < y){



    //右非空




  23. t[k++] = a[q++];

  24. }

    //右空





  25. else




    break


    ;


  26. }

  27. }


  28. for


    (


    int


    i = x; i < y; i ++) a[i] = t[i];


  29. }

  30. }



  31. int


    main()


  32. {


  33. int


    n;



  34. int


    a[100], t[100];


  35. cin >> n;


  36. for


    (


    int


    i = 1; i <= n; i ++) scanf(


    “%d”


    ,&a[i]);


    //输入数据





  37. mergeSort(a,1,n+1,t);



  38. for


    (


    int


    i = 1; i <= n; i ++) printf(


    “%d ”


    ,a[i]);


  39. printf(

    “\n”


    );




  40. return


    0;


  41. }

归并排序最主要的就是合并的时候的选择最小的元素添加到结果中的适当位置去。

2、归并排序的一个应用——逆序对数

问题的提法:给出一列数A1,A2,…,An,求它的逆序对数,即有多少个逆序对(i<j,而Ai > Aj)

主要的思想:在右边的A[j]复制到T中时,左边还没来得及复制到T中的那些数就是左边左右比A[j]大的数,因为此时A[j]前面复制到T中的数肯定比它小,而尚未复制的数肯定比它大。

实现如下:



  1. #include <iostream>





  2. using




    namespace


    std;




  3. int


    reverseCount(


    int


    * a,


    int


    x,


    int


    y,


    int


    * t)


    //归并排序,t为辅助空间




  4. {


  5. int


    res = 0;



  6. if


    (y-x > 1)


    //由于是区间[x,y),非空则有y-x>=1,而1个元素的子序列已经有序




  7. {


  8. int


    m = x + (y-x)/2;


    //中点




  9. res += reverseCount(a,x,m,t);

  10. res += reverseCount(a,m,y,t);



  11. //合并





  12. int


    p = x, q = m, k = x;



  13. while


    (1)


  14. {


  15. if


    (p < m){



    //左非空





  16. if


    (q < y){



    //右非空





  17. if


    (a[p] < a[q]) t[k++] = a[p++];



  18. else


    {


  19. t[k++] = a[q++];

  20. res += m-p;

  21. }

  22. }


  23. else


    t[k++] = a[p++];


  24. }


  25. else


    {



    //左空





  26. if


    (q < y){



    //右非空




  27. t[k++] = a[q++];

  28. res += m-p;

  29. }

    //右空





  30. else




    break


    ;


  31. }

  32. }


  33. for


    (


    int


    i = x; i < y; i ++) a[i] = t[i];


  34. }


  35. return


    res;


  36. }



  37. int


    main()


  38. {


  39. int


    n;



  40. int


    a[100], t[100];


  41. cin >> n;


  42. for


    (


    int


    i = 1; i <= n; i ++) scanf(


    “%d”


    ,&a[i]);


    //输入数据





  43. cout <<

    “逆序对数:”


    << reverseCount(a,1,n+1,t) <<endl;




  44. return


    0;


  45. }

这个问题在O(nlogn)的时间复杂度下解决,当然了也可以通过O(n^2)的枚举直接解决,只不过这里利用了归并排序的一个特性而已。

3、快速排序的实现

还是分治法的三个步骤,(这里的partion函数还有问题,还没实现)



  1. #include <iostream>





  2. using




    namespace


    std;




  3. int


    partion(


    int


    * a,


    int


    x,


    int


    y)


  4. {


  5. int


    p = x;


    //以x为基准元素





  6. int


    i = x+1, j = y-1;



  7. while


    (i < j)


  8. {


  9. while


    (i < j && a[i] <= a[p]) i ++;



  10. while


    (j > i && a[j] >= a[p]) j –;



  11. if


    (i < j){



    int


    t = a[i]; a[j] = a[j]; a[j] = t;}


  12. }


  13. int


    t = a[p]; a[p] = a[i]; a[i] = t;



  14. return


    p;


  15. }



  16. void


    quickSort(


    int


    * a,


    int


    x,


    int


    y)


    //快速排序,区间为[x,y)




  17. {


  18. if


    (y-x > 1)


    //如果只有一个元素,不用排序




  19. {


  20. //划分成左右两个部分(尽量等长),m返回的是划分基准元素所在的位置





  21. int


    m = partion(a,x,y);



  22. //递归解决左右两边的排序




  23. quickSort(a,x,m);

  24. quickSort(a,m+1,y);


  25. //不用合并,此时已经有序




  26. }

  27. }



  28. int


    main()


  29. {


  30. int


    n;



  31. int


    a[100];


  32. cin >> n;


  33. for


    (


    int


    i = 1; i <= n; i ++) scanf(


    “%d”


    ,&a[i]);


    //输入数据





  34. quickSort(a,1,n+1);



  35. for


    (


    int


    i = 1; i <= n; i ++) printf(


    “%d ”


    ,a[i]);


  36. printf(

    “\n”


    );




  37. return


    0;


  38. }

4、快速排序的一个应用——第k小的数

5、二分查找的实现

二分查找是在元素有序的前提下的,否则结果是错的。

问题划分:比较待查找元素v和中间位置的元素a[m]的大小,如果v小,则在左边查找,如果相等,则返回下表m,否者在右边查找。

递归求解:在判断了v和a[m]大小的情况下,选择左边或者右边进行递归求解。

合并结果:由于v要么在左边,要么在右边,直接返回就可以了。

另外,此处的实现是非递归的:

非递归实现如下:



  1. #include <iostream>





  2. using




    namespace


    std;




  3. int


    binarySearch(


    int


    * a,


    int


    x,


    int


    y,


    int


    v)


    //半开区间[x,y)




  4. {


  5. int


    m;



  6. while


    (x < y)


  7. {

  8. m = x + (y-x)/2;


  9. if


    (v == a[m])


    return


    m;


    //找到了





  10. else




    if


    (v < a[m]) y = m;


    //在左边





  11. else


    x = m+1;


    //在右边




  12. }


  13. return


    -1;


  14. }



  15. int


    main()


  16. {


  17. int


    n;



  18. int


    a[100];


  19. cin >> n;


  20. for


    (


    int


    i = 1; i <= n; i ++) scanf(


    “%d”


    ,&a[i]);


    //输入数据





  21. cout << binarySearch(a,1,n+1,3) <<endl;



  22. return


    0;


  23. }

递归实现如下:



  1. #include <iostream>





  2. using




    namespace


    std;




  3. int


    binarySearch(


    int


    * a,


    int


    x,


    int


    y,


    int


    v)


    //半开区间[x,y)




  4. {


  5. if


    (y-x == 1){



    //递归边界处理





  6. if


    (v == a[x])


    return


    x;



  7. else




    return


    -1;


    //所找元素不存在




  8. }


  9. else


    //尚未达到边界,继续划分




  10. {


  11. int


    m = x + (y-x)/2;



  12. if


    (v == a[m])


    return


    m;



  13. else




    if


    (v < a[m])


    //在左边查找





  14. return


    binarySearch(a,x,m,v);



  15. else




    //在右边查找





  16. return


    binarySearch(a,m+1,y,v);


  17. }

  18. }



  19. int


    main()


  20. {


  21. int


    n;



  22. int


    a[100];


  23. cin >> n;


  24. for


    (


    int


    i = 1; i <= n; i ++) scanf(


    “%d”


    ,&a[i]);


    //输入数据





  25. cout << binarySearch(a,1,n+1,3) <<endl;



  26. return


    0;


  27. }

二分查找在每次子问题划分的时候,只选择子问题的一个分支进行递归查找,从而T(n) = log(n),当然了,前提条件是元素有序。

6、二分查找的lower_bound和upper_bound

lower_bound和二分查找类似,不过在查找到了元素v == a[m]之后,由于可能在m左边还可能存在元素v,因此,此时不应该返回m,而是继续向左边查找(即使查找不到,最后返回的也是左边的右边界后一个位置,即m),而upper_bound也类似,在找到了v == a[m]之后,由于右边还可能出现v,因此不应该返回m,而是继续向右边查找(即使查找不到,返回的是m+1,即v在数组a中最后一次出现位置的下一个位置)

程序实现如下:



  1. #include <iostream>





  2. using




    namespace


    std;




  3. int


    lower_bound(


    int


    * a,


    int


    x,


    int


    y,


    int


    v)


    //半开区间[x,y)




  4. {


  5. int


    m;



  6. while


    (x < y)


  7. {

  8. m = x + (y-x)/2;


  9. if


    (v == a[m]){



    //找到了,但是可能在左边还存在v





  10. //return  m;




  11. y = m;

  12. }


  13. else




    if


    (v < a[m]) y = m;


    //在左边





  14. else


    x = m+1;


    //在右边




  15. }


  16. return


    x;


  17. }



  18. int


    upper_bound(


    int


    * a,


    int


    x,


    int


    y,


    int


    v)


    //开区间[x,y)




  19. {

    //返回的是v在数组a中最后一次出现的下一个位置





  20. int


    m;



  21. while


    (x < y)


  22. {

  23. m = x + (y-x)/2;


  24. if


    (v == a[m]){



    //找到了,但是可能在右边还存在v,应该继续向右边搜,如果右边没有,则返回的事m+1,即v在数组a中最后一次出现位置的下一个位置。





  25. //return  m;




  26. x = m+1;

  27. }


  28. else




    if


    (v < a[m]) y = m;


    //在左边





  29. else


    x = m+1;


    //在右边




  30. }


  31. return


    x;


  32. }


  33. int


    main()


  34. {


  35. int


    n;



  36. int


    a[100];


  37. cin >> n;


  38. for


    (


    int


    i = 1; i <= n; i ++) scanf(


    “%d”


    ,&a[i]);


    //输入数据






  39. int


    low = lower_bound(a,1,n+1,2);



  40. int


    up = upper_bound(a,1,n+1,2);


  41. cout <<

    “2的下界:”


    << low <<endl;


  42. cout <<

    “2的上界:”


    << up <<endl;


  43. cout <<

    “2出现的个数为:”


    << up-low << endl;




  44. return


    0;


  45. }


7、总结

上面的一些问题,主要是利用了分治法(分解问题、递归求解、合并结果)的思想,具体问题有具体问题的实际技巧。



版权声明:本文为zhongguoren666原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。