leetcode:數(shù)組(easy)

leetcode 581. Shortest Unsorted Continuous Subarray Add to List

給定一個整數(shù)數(shù)組窒升,找出其中最短的一段連續(xù)子數(shù)組,當對這段子數(shù)組排序后家淤,整個數(shù)組遞增有序异剥。

Input: [2, 6, 4, 8, 10, 9, 15]
Output: 5
你只需將[6, 4, 8, 10, 9]按升序排列就可以讓整個數(shù)組都是升序排列瑟由。

注意:
數(shù)組長度范圍[1, 10000]
輸入數(shù)組可能包含重復絮重,因此“遞增有序”意思是<=

解題思路:先把數(shù)組進行排序,然后再將輸入的數(shù)組和排序過后的數(shù)組進行對比歹苦。左右同時對比青伤,左右比較最先不同的下標就是子序列的邊界。

[2, 6, 4, 8, 10, 9, 15]
[2, 4, 6, 8, 9, 10,15 ]
左邊開始不同的是(4殴瘦,6)下標是1
右邊開始不同的是(9狠角,10)下表是5
length(1,5)= 5
#java
public class Solution {
    public int findUnsortedSubarray(int[] nums) {
        int temp[] = new int[nums.length];
        System.arraycopy(nums, 0, temp, 0, nums.length);
        Arrays.sort(temp);
        int start = 0;
        int end = nums.length-1;
        while(start<nums.length&&nums[start]==temp[start]){
            start++;
        }
        while(end>=0&&nums[end]==temp[end]){
            end--;
        }
        if(end>start){
            return end-start+1;
        }else{
            return 0;
        }
    }
}```
ref:
http://bookshadow.com/weblog/2017/05/15/leetcode-shortest-unsorted-continuous-subarray/
http://www.reibang.com/p/093c2116b749
https://leetcode.com/problems/shortest-unsorted-continuous-subarray/#/description
Java拷貝數(shù)組的幾種方法:
http://www.cnblogs.com/jjdcxy/p/5870524.html

####leetcode 566. Reshape the Matrix 
In MATLAB, there is a very useful function called 'reshape', which can reshape a matrix into a new one with different size but keep its original data. You're given a matrix represented by a two-dimensional array, and two positive integers r and c representing the row number and column number of the wanted reshaped matrix, respectively.The reshaped matrix need to be filled with all the elements of the original matrix in the same row-traversing order as they were. If the 'reshape' operation with given parameters is possible and legal, output the new reshaped matrix; Otherwise, output the original matrix. 

Example 1:
Input:
nums =
[[1,2],
[3,4]]
r = 1, c = 4
Output:
[[1,2,3,4]]
Explanation:
The row-traversing of nums is [1,2,3,4]. The new reshaped matrix is a 1 * 4 matrix, fill it row by row by using the previous list.

Example 2:

Input:
nums =
[[1,2],
[3,4]]
r = 2, c = 4
Output:
[[1,2],
[3,4]]
Explanation:
There is no way to reshape a 2 * 2 matrix to a 2 * 4 matrix. So output the original matrix.

Note:
The height and width of the given matrix is in range [1, 100].
The given r and c are all positive.

解題思路:太簡單了蚪腋,沒思路丰歌。

public class Solution {
public int[][] matrixReshape(int[][] nums, int r, int c) {
int colum = nums[0].length;
int row = nums.length;
int[][] temp = new int[r][c];
if((columrow)!=(rc)){
return nums;
}else{
for(int i = 0;i<row*colum;i++){
temp[i/c][i%c]=nums[i/colum][i%colum];
}
return temp;
}
}
}

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末姨蟋,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子立帖,更是在濱河造成了極大的恐慌眼溶,老刑警劉巖晓勇,帶你破解...
    沈念sama閱讀 206,013評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件堂飞,死亡現(xiàn)場離奇詭異,居然都是意外死亡绑咱,警方通過查閱死者的電腦和手機绰筛,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,205評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來描融,“玉大人铝噩,你說我怎么就攤上這事〖诟澹” “怎么了薄榛?”我有些...
    開封第一講書人閱讀 152,370評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長让歼。 經(jīng)常有香客問我敞恋,道長,這世上最難降的妖魔是什么谋右? 我笑而不...
    開封第一講書人閱讀 55,168評論 1 278
  • 正文 為了忘掉前任硬猫,我火速辦了婚禮,結果婚禮上改执,老公的妹妹穿的比我還像新娘啸蜜。我一直安慰自己,他們只是感情好辈挂,可當我...
    茶點故事閱讀 64,153評論 5 371
  • 文/花漫 我一把揭開白布衬横。 她就那樣靜靜地躺著,像睡著了一般终蒂。 火紅的嫁衣襯著肌膚如雪蜂林。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 48,954評論 1 283
  • 那天拇泣,我揣著相機與錄音噪叙,去河邊找鬼。 笑死霉翔,一個胖子當著我的面吹牛睁蕾,可吹牛的內容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 38,271評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼子眶,長吁一口氣:“原來是場噩夢啊……” “哼瀑凝!你這毒婦竟也來了?” 一聲冷哼從身側響起臭杰,我...
    開封第一講書人閱讀 36,916評論 0 259
  • 序言:老撾萬榮一對情侶失蹤猜丹,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后硅卢,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體射窒,經(jīng)...
    沈念sama閱讀 43,382評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,877評論 2 323
  • 正文 我和宋清朗相戀三年将塑,在試婚紗的時候發(fā)現(xiàn)自己被綠了脉顿。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 37,989評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡点寥,死狀恐怖艾疟,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情敢辩,我是刑警寧澤蔽莱,帶...
    沈念sama閱讀 33,624評論 4 322
  • 正文 年R本政府宣布,位于F島的核電站戚长,受9級特大地震影響盗冷,放射性物質發(fā)生泄漏。R本人自食惡果不足惜同廉,卻給世界環(huán)境...
    茶點故事閱讀 39,209評論 3 307
  • 文/蒙蒙 一仪糖、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧迫肖,春花似錦锅劝、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,199評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至隅津,卻和暖如春诬垂,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背饥瓷。 一陣腳步聲響...
    開封第一講書人閱讀 31,418評論 1 260
  • 我被黑心中介騙來泰國打工剥纷, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留痹籍,地道東北人呢铆。 一個月前我還...
    沈念sama閱讀 45,401評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像蹲缠,于是被迫代替她去往敵國和親棺克。 傳聞我的和親對象是個殘疾皇子悠垛,可洞房花燭夜當晚...
    茶點故事閱讀 42,700評論 2 345

推薦閱讀更多精彩內容