HDU 1425 Hash求解

本题用快排也可以过 (时间复杂度(nlgn)); Hash 时间复杂度 n;

快排:
  1. #include
  2. #include
  3. using namespace std;
  4. const int maxn=1000000+10;
  5. int a[maxn];
  6. bool cmp(int a,int b){return a>b;}
  7. int main(){
  8.     int n,m;
  9.     while(scanf("%d%d",&n,&m)==2){
  10.         for(int i=0;i
  11.         sort(a,a+n,cmp);
  12.         printf("%d",a[0]);
  13.         for(int i=1;i
  14.         printf("\n");
  15.     }
  16.     return 0;
  17. }


Hash:
  1. #include
  2. #include
  3. const int maxn=1000000+10;
  4. int hash[maxn];
  5. int main(){
  6.     int n,m;
  7.     while(scanf("%d%d",&n,&m)==2){
  8.         memset(hash,0,sizeof(hash));
  9.         for(int i=0;i
  10.             int temp;
  11.         scanf("%d",&temp);
  12.         hash[500000+temp]=1; 
  13.         }
  14.         int t=m;
  15.         for(int i=maxn-1;m>0;i--){              //有一点不清楚的是这里不能写出 i=sizeof(hash)-1;????
  16.             if(hash[i]){
  17.                   if(m==t)
  18.                   printf("%d",i-500000);
  19.                   else printf(" %d",i-500000);
  20.                   m--;
  21.             }
  22.         }
  23.         printf("\n");
  24.     }
  25.     return 0;
  26. }

练习本题的目的是学会运用Hash求解问题。

你可能感兴趣的:(其他)