leetcode第一百一十九題:楊輝三角Ⅱ
問題:
給定一個非負索引 k,其中 k ≤ 33,返回楊輝三角的第 k 行。
在楊輝三角中,每個數是它左上方和右上方的數的和。
示例:
輸入: 3
輸出: [1,3,3,1]
解答:
public List<Integer> getRow(int rowIndex) {
List<Integer> list=new ArrayList<Integer>();
int[][] arr=new int[rowIndex+1][rowIndex+1];
for(int i=0;i<rowIndex+1;i++){
arr[i][0]=1;
for (int j = 1; j <= i; j++) {
arr[i][j]=arr[i-1][j-1]+arr[i-1][j];
}
}
for(int i=0;i<=rowIndex;i++){
list.add(arr[rowIndex][i]);
}
return list;
}
相關文章
- LeetCode每日一題: 楊輝三角(No.118)LeetCode每日一題
- LeetCode 118. 楊輝三角LeetCode
- 楊輝三角
- 列印楊輝三角(1)
- 08_楊輝三角
- leedcode每日一題:118. 楊輝三角每日一題
- 楊輝三角形
- 119. 楊輝三角 II
- 楊輝三角列印10行
- HDU-2032-楊輝三角
- 7-3 列印楊輝三角 (20分) 本題要求按照規定格式列印前N行楊輝三角。
- js中實現楊輝三角JS
- 杭電OJ 2032楊輝三角
- Java基礎——列印楊輝三角Java
- Golang 遞迴列印楊輝三角Golang遞迴
- c語言筆記:楊輝三角C語言筆記
- 前端演算法題:JS遞迴實現楊輝三角前端演算法JS遞迴
- 使用python生成楊輝三角形Python
- 經典演算法(5)楊輝三角演算法
- 楊輝三角(組合數)+排列組合
- 佇列(楊輝三角)——鏈式佇列佇列
- 藍橋杯第五屆JavaC組楊輝三角問題解決方法Java
- Python計算組合數生成楊輝三角形Python
- 楊輝三角的5個特性,一個比一個牛皮!
- 領釦LintCode演算法問題答案-1354. 楊輝三角形II演算法
- 20190105-列印字母C,H,N,口等影像和楊輝三角
- 增補部落格 第十八篇 python 楊輝三角形Python
- 組合數的計算(利用楊輝三角/記憶化搜尋)
- 組合數取模的幾種方法--Exlucas&楊輝三角&組合
- 藍橋杯-基礎練習-楊輝三角形(Python)AC程式碼PythonC程式
- 實驗四:採用一維陣列輸出等腰三角形的楊輝三角。陣列
- 微課|中學生可以這樣學Python(例6.1):楊輝三角形Python
- leetcode第一題LeetCode
- 【leetcode 簡單】 第五十九題 同構字串LeetCode字串
- 用 Rust 刷 leetcode 第一題RustLeetCode
- 【Leetcode刷題篇】leetcode812 最大三角形面積LeetCode
- 【leetcode 簡單】 第一百零六題 壓縮字串LeetCode字串
- LeetCode每日一題: 三角形的最大周長(No.976)LeetCode每日一題