亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

merge_sort

  • merge_sort的一個示例程序,希望能對初學者有所幫助

    merge_sort的一個示例程序,希望能對初學者有所幫助

    標簽: merge_sort 程序 初學者

    上傳時間: 2016-12-09

    上傳用戶:moerwang

  • this program is merge_sort that writted with c++. this program get an array and sort it in order nl

    this program is merge_sort that writted with c++. this program get an array and sort it in order nlogn.

    標簽: program this merge_sort writted

    上傳時間: 2017-03-23

    上傳用戶:wsf950131

  • c語言算法排序

    1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.) #include<stdio.h> #include<stdlib.h> void merge(int arr[],int low,int mid,int high){      int i,k;      int *tmp=(int*)malloc((high-low+1)*sizeof(int));      int left_low=low;      int left_high=mid;      int right_low=mid+1;      int right_high=high;      for(k=0;left_low<=left_high&&right_low<=right_high;k++)      {      if(arr[left_low]<=arr[right_low]){                                        tmp[k]=arr[left_low++];                                        }      else{           tmp[k]=arr[right_low++];           } }             if(left_low<=left_high){                              for(i=left_low;i<=left_high;i++){                                                               tmp[k++]=arr[i];                                                               }                              }       if(right_low<=right_high){                              for(i=right_low;i<=right_high;i++)                                                                tmp[k++]=arr[i];                                                        }                              for(i=0;i<high-low+1;i++)                                                       arr[low+i]=tmp[i];       } void merge_sort(int a[],int p,int r){      int q;      if(p<r){              q=(p+r)/2;              merge_sort(a,p,q);              merge_sort(a,q+1,r);              merge(a,p,q,r);              }      } int main(){     int a[8]={3,5,8,6,4,1,1};     int i,j;     int x=10;     merge_sort(a,0,6);     printf("after Merging-Sort:\n");     for(i=0;i<7;i++){                      printf("%d",a[i]);                      }     printf("\n");     i=0;j=6;     do{                                    if(a[i]+a[j]==x){                                  printf("exist");                                  break;                                  }                  if(a[i]+a[j]>x)                                 j--;                  if(a[i]+a[j]<x)                                 i++;                       }while(i<=j);     if(i>j)              printf("not exist");     system("pause");     return 0;     }

    標簽: c語言 算法 排序

    上傳時間: 2017-04-01

    上傳用戶:糖兒水嘻嘻

主站蜘蛛池模板: 柘荣县| 宜阳县| 平山县| 平乐县| 南川市| 黔江区| 祁连县| 太白县| 综艺| 潼关县| 大港区| 逊克县| 张家口市| 横峰县| 济南市| 汤阴县| 汕尾市| 马关县| 观塘区| 清水河县| 鄯善县| 连江县| 鹤壁市| 镇远县| 武宣县| 瓮安县| 云龙县| 綦江县| 靖江市| 长宁县| 浦东新区| 沙雅县| 乌审旗| 商丘市| 宜兰县| 石林| 夹江县| 出国| 温州市| 通化县| 股票|