两个数组,一个存start,一个存end,分别sort。如果当前start >= end[last],说明这个start可以和上一个end用一间...
int[] arr = {1, 2, 3}sub array 必须是连续的元素,比如{1}, {1,2}, {1,2,3},不能有{1,3}su...
Example 1: Given 1->2->3->4, reorder it to 1->4->2->3.Example 2: Given 1...
Given a circular array (the next element of the last element is the firs...
You are given two arrays (without duplicates) nums1 and nums2 where nums...
Below are the permutations of string ABC.ABC ACB BAC BCA CBA CAB idea: 交...
位运算:优先度低于+-*/&与:0&1,0&0 =0,1&1=1,可以通过n&(n-1)使得最末尾的1变成0,进而算出n中有多少1 异或运算,1...
考完561第一次期中了,可以有时间写简历继续刷题了,虽然还有585作业....不过感觉能丰富简历(划掉),加油找工作啊wyz!!!!!!
刚把561的作业交了,各种搜索方法的代码实现还是个大问题啊,第一次写dfs简直手足无措,还是立志phd大佬指导,直接给了份n棋盘k皇后的代码,才...