排序——有多少小于当前数字的数字
2022/2/5 23:16:08
本文主要是介绍排序——有多少小于当前数字的数字,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、题目描述
给你一个数组 nums,对于其中每个元素 nums[i],请你统计数组中比它小的所有数字的数目。
换而言之,对于每个 nums[i] 你必须计算出有效的 j 的数量,其中 j 满足 j != i 且 nums[j] < nums[i] 。
以数组形式返回答案。
二、C语言代码
/** * Note: The returned array must be malloced, assume caller calls free(). */ int* smallerNumbersThanCurrent(int* nums, int numsSize, int* returnSize){ int *temp = (int*)malloc(sizeof(int) * numsSize); for(int i = 0; i < numsSize; i++){ temp[i] = nums[i]; } // 排序 for(int i = 0; i < numsSize - 1; i++){ int flag = i; for(int j = i + 1; j < numsSize; j++){ if(nums[j] < nums[flag]){ flag = j; } } if(flag > i){ int temp = nums[i]; nums[i] = nums[flag]; nums[flag] = temp; } } int *ret = (int *)malloc(sizeof(int) * (nums[numsSize - 1] + 1)); int flag = nums[0]; int count = 1; ret[flag] = 0; for(int i = 1; i < numsSize; i++){ if(nums[i] > nums[i - 1]){ ret[nums[i]] = ret[flag] + count; flag = nums[i]; count = 1; } else count++; } for(int i = 0; i < numsSize; i++){ temp[i] = ret[temp[i]]; } free(ret); *returnSize = numsSize; return temp; }
这篇关于排序——有多少小于当前数字的数字的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Springboot应用的多环境打包入门
- 2024-11-23Springboot应用的生产发布入门教程
- 2024-11-23Python编程入门指南
- 2024-11-23Java创业入门:从零开始的编程之旅
- 2024-11-23Java创业入门:新手必读的Java编程与创业指南
- 2024-11-23Java对接阿里云智能语音服务入门详解
- 2024-11-23Java对接阿里云智能语音服务入门教程
- 2024-11-23JAVA对接阿里云智能语音服务入门教程
- 2024-11-23Java副业入门:初学者的简单教程
- 2024-11-23JAVA副业入门:初学者的实战指南