当前位置:   article > 正文

LeetCode-347-前K个高频元素-C语言_leecode高频元素c语言

leecode高频元素c语言
/*
 * 算法思想:
 * 构建带权值哈希表,权值为出现次数;
 * 1. 首先排序,方便构建哈希表,使相同的值相邻;
 * 2. 排序哈希表,以哈希表的权值出现次数为排序元素;
 * 3. 从哈希表中提取k个排序结果即可。
 **/

int cmp(int *a, int *b){
    return *a - *b;
}

int cmp_node(int *a, int *b){
    return a[1] - b[1];
}

int* topKFrequent(int* arr, int len, int k, int* returnSize){
    qsort(arr, len, sizeof(int), cmp);
    
    int *ret = (int *)malloc(sizeof(int) * k);
    int hash[len][2];
    int i, index=0;
    int ret_index = 0;
    
    memset(hash, 0, sizeof(hash));
    
    for(i=0; i<len; i++){
        if(i==0 || hash[index][0] != arr[i]){
            if(i!=0) index++;
            
            hash[index][0] = arr[i];
        }
        
        hash[index][1]++;            
    }
    
    qsort(hash, index+1, sizeof(int)*2, cmp_node);
    
    for(i=index; i>=0 && ret_index<k; i--){
        ret[ret_index++] = hash[i][0];
    }
    
    *returnSize = k;
    return ret;
}


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/72763?site
推荐阅读
相关标签
  

闽ICP备14008679号