标签: arrays algorithm sorting array-algorithms
我们可以在线性时间内对未排序的实数数组进行排序吗? 这就是我的想法:
给出一个大小为n的未排序数组:
sqrt(n)^th
所以整个算法都是O(n)
我知道下限是nlog(n)。我做错了什么?