标签:color 存在 超时 sizeof 输出 code 思路 大于 运行
1 int cmp(const void *a, const void *b) 2 { 3 return (*(int *)a-*(int *)b); 4 } 5 6 int majorityElement(int* nums, int numsSize) 7 { 8 qsort(nums,numsSize,sizeof(int),cmp); 9 10 return nums[numsSize/2]; 11 }
标签:color 存在 超时 sizeof 输出 code 思路 大于 运行
原文地址:https://www.cnblogs.com/ZhengLijie/p/12493668.html