摘要:
大家好,我是小鸭酱,博客地址为:http://www.cnblogs.com/xiaoyajiang pyAudioAnalysis是一个音频分析python库,用于Feature Extraction, Classification, Segmentation 和Applications,其git 阅读全文
摘要:
大家好,我是小鸭酱,博客地址为:http://www.cnblogs.com/xiaoyajiang 高级篇算法,包括 快速排序和希尔排序。首先介绍快速排序。 1. quicksort,C.A.R.Hoare (1934~)Turing Award,1980 2. 分治策略,分而治之 quickso 阅读全文
摘要:
在本篇中我将介绍基础的排序算法,包括bubblesort(起泡排序),insertionsort(插入培训),selectionsort(选择排序),mergesort(归并排序),bucketsort(桶排序),countingsort(计数排序),radixsort(基数排序),heapsort 阅读全文
摘要:
为了求解LeetCode #215 Kth Largest Element in an Array,我们需要先了解快速排序的思想。整理如下: 那啥,明天再整理吧。。。。好晚了 阅读全文
摘要:
大家好,我是小鸭酱,博客地址为:http://www.cnblogs.com/xiaoyajiang 这个题目是归并算法中的归并这一步。明确题目是要求归并到nums1中,可以考虑倒序比较两个元素。 代码如下: 阅读全文
摘要:
大家好,我是小鸭酱,博客地址为:http://www.cnblogs.com/xiaoyajiang 这个题目超简单是不,用计数排序就搞定了~ 代码如下: 可是可是,这不是遍历了两遍吗?下面介绍遍历一遍就能完成的算法,三路快排来啦: 阅读全文
摘要:
一个通过的解法如下: 首先判断元素个数是否不少于2个,因为在这样的情况下,无论怎么样nums整个数组都是符合要求的,可以直接返回本身; 对于一般的,首先,我们需要两个变量,一个用于记录被填补的个数cout,一个用于记录前一次的比较结果lastSame(初始化为false,符合策略需求),有如下策略 阅读全文
摘要:
删除相同数字 阅读全文
摘要:
类似#283,只是这里的0变成了value,并且需要统计个数 这里采用#283的解法一算法,代码如下: 阅读全文
摘要:
Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements.
For example, given nums = [0, 1, 0, 3, 12], after calling your function, nums should be [1, 3, 12, 0, 0].
Note:
You must do this in-place without making a copy of the array.
Minimize the total number of operations. 阅读全文