經典演算法(5)楊輝三角
寫在前面: 我是 揚帆向海,這個暱稱來源於我的名字以及女朋友的名字。我熱愛技術、熱愛開源、熱愛程式設計。技術是開源的、知識是共享的。
這部落格是對自己學習的一點點總結及記錄,如果您對 Java、演算法 感興趣,可以關注我的動態,我們一起學習。
用知識改變命運,讓我們的家人過上更好的生活。
一、楊輝三角的介紹
百度百科對於楊輝三角是這樣介紹的:
二、楊輝三角的演算法思想
(此圖片來源於網路)
楊輝三角的兩個腰邊的數都是 1,從第3行起,除第一個數和最後一個數外,其它位置的數都是上頂上兩個數之和。
三、程式碼實現
1.第一種寫法
public class YangHuiTriangle1 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("輸入要列印的行數:");
int n = scanner.nextInt();
// 列印楊輝三角
getTriangle(n);
}
/**
* 列印楊輝三角
*
* @param n 要列印的行數
* @return
*/
private static int[][] getTriangle(int n) {
// 建立一個二維陣列,此二維陣列用來存放楊輝三角中每一行的值
int[][] array = new int[n][n];
// 給陣列元素賦值
for (int i = 0; i < array.length; i++) {
// 每一行的值
array[i] = new int[i + 1];
// 給首末元素賦值
array[i][0] = array[i][i] = 1;
// 給每行的非首末元素賦值
if (i > 1) {
for (int j = 1; j < array[i].length - 1; j++) {
array[i][j] = array[i - 1][j - 1] + array[i - 1][j];
}
}
}
// 遍歷二維陣列
for (int i = 0; i < array.length; i++) {
for (int j = 0; j < array[i].length; j++) {
System.out.print(array[i][j] + "\t");
}
System.out.println();
}
return array;
}
}
程式碼執行結果:
輸入要列印的行數:10
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
1 6 15 20 15 6 1
1 7 21 35 35 21 7 1
1 8 28 56 70 56 28 8 1
1 9 36 84 126 126 84 36 9 1
2.第二種寫法
public class YangHuiTriangle2 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("輸入要列印的行數:");
int n = scanner.nextInt();
// 列印楊輝三角
int array[][] = getTriangle(n);
// 列印成等腰三角形
printTriangle(array);
}
private static int[][] getTriangle(int n) {
// 建立一個二維陣列,此二維陣列用來存放楊輝三角中每一行的值
int[][] array = new int[n][n];
// 給陣列元素賦值
for (int i = 0; i < array.length; i++) {
// 每一行的值
array[i] = new int[i + 1];
// 給首末元素賦值
array[i][0] = array[i][i] = 1;
// 給每行的非首末元素賦值
if (i > 1) {
for (int j = 1; j < array[i].length - 1; j++) {
array[i][j] = array[i - 1][j - 1] + array[i - 1][j];
}
}
}
return array;
}
/**
* 列印成等腰三角形
*
* @param array
*/
public static void printTriangle(int[][] array) {
for (int i = 0; i < array.length; i++) {
// 輸出楊輝三角數字前面的空格
for (int j = 0; j < array.length - 1 - i; j++) {
System.out.print(" ");
}
for (int j = 0; j <= i; j++) {
// 用空格填補空位置
System.out.print(" ");
// 以十進位制整數的形式輸出,位寬是3,左對齊
System.out.printf("%-3d", array[i][j]);
}
System.out.println();
}
}
}
程式碼執行結果:
輸入要列印的行數:
10
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
1 6 15 20 15 6 1
1 7 21 35 35 21 7 1
1 8 28 56 70 56 28 8 1
1 9 36 84 126 126 84 36 9 1
相關文章
- 楊輝三角
- 列印楊輝三角(1)
- 08_楊輝三角
- 楊輝三角形
- 119. 楊輝三角 II
- 楊輝三角列印10行
- LeetCode 118. 楊輝三角LeetCode
- HDU-2032-楊輝三角
- js中實現楊輝三角JS
- 杭電OJ 2032楊輝三角
- Java基礎——列印楊輝三角Java
- Golang 遞迴列印楊輝三角Golang遞迴
- 前端演算法題:JS遞迴實現楊輝三角前端演算法JS遞迴
- c語言筆記:楊輝三角C語言筆記
- 楊輝三角的5個特性,一個比一個牛皮!
- 使用python生成楊輝三角形Python
- 楊輝三角(組合數)+排列組合
- LeetCode每日一題: 楊輝三角(No.118)LeetCode每日一題
- leedcode每日一題:118. 楊輝三角每日一題
- 佇列(楊輝三角)——鏈式佇列佇列
- 7-3 列印楊輝三角 (20分) 本題要求按照規定格式列印前N行楊輝三角。
- leetcode第一百一十九題:楊輝三角ⅡLeetCode
- 領釦LintCode演算法問題答案-1354. 楊輝三角形II演算法
- Python計算組合數生成楊輝三角形Python
- 20190105-列印字母C,H,N,口等影像和楊輝三角
- 增補部落格 第十八篇 python 楊輝三角形Python
- 組合數的計算(利用楊輝三角/記憶化搜尋)
- 藍橋杯第五屆JavaC組楊輝三角問題解決方法Java
- 組合數取模的幾種方法--Exlucas&楊輝三角&組合
- 藍橋杯-基礎練習-楊輝三角形(Python)AC程式碼PythonC程式
- 實驗四:採用一維陣列輸出等腰三角形的楊輝三角。陣列
- 微課|中學生可以這樣學Python(例6.1):楊輝三角形Python
- Lisp經典演算法Lisp演算法
- Python經典演算法片段Python演算法
- 經典排序演算法回顧:排序演算法
- 人臉識別三大經典演算法(附經典論文列表)演算法
- JavaScript實現經典排序演算法JavaScript排序演算法
- 經典加密演算法入門-RSA加密演算法