最新 最热

【C语言】排序算法之选择排序

选择排序(Selection sort)是一种简单直观的排序算法。它的工作原理如下。首先在未排序序列中找到最小(大)元素,存放到排序序列的起始位置,然后,再从剩余未排序元素中继续寻找最小(大)元素,然后放到已排序序列的末尾。以此类推,直...

2021-09-16
1

SQL DQL:数据查询

使用Select进行查询时,根据查询需求不同,可以分为过滤、排序、分桶与聚合、连接,这4类型查询操作。

2021-09-10
1

基数排序是什么?

基数排序(radix sort)属于“分配式排序”(distribution sort),又称“桶子法”(bucket sort)或bin sort,顾名思义,它是透过键值的部份资讯,将要排序的元素分配至某些“桶”中,藉以达到排序的作用,基数排序法是属于稳定性的排序,其时...

2021-09-03
1

当前行数字去重、排序、合并?无需套路,无需脑洞!

有朋友遇到类似的问题,即要求将当前行每个单元格中的数字去掉重复之后进行从小到大的排序,并合并到一起,数据如下图所示:

2021-08-30
1

详解Linux如何查看当前占用CPU或内存最多的几个进程

2、ps:参数a指代all——所有的进程,u指代userid——执行该进程的用户id,x指代显示所有程序,不以终端机来区分。

2021-08-30
1

使用uniq命令去除文件中的重复行

uniq命令全称是“unique”,中文释义是“独特的,唯一的”。该命令的作用是用来去除文本文件中连续的重复行,中间不能夹杂其他文本行。去除了重复的,保留的都是唯一的,也就是独特的,唯一的了。...

2021-08-30
1

36 Sort Integers by The Number of 1 Bits

Given an integer array arr. You have to sort the integers in the array in ascending order by the number of 1’s in their binary representation and in case of two...

2021-08-18
0

LeetCode 0148 - Sort List

Sort a linked list in O(n log n) time using constant space complexity.

2021-08-11
0

LeetCode 0324 - Wiggle Sort II

Given an unsorted array nums, reorder it such that nums[0] < nums[1] > nums[2] < nums[3]….

2021-08-11
0

LeetCode 0075 - Sort Colors

Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and ...

2021-08-11
1