学习链接: http://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/0014317799226173f45ce40636141b6abc8424e12b5fb27000 生成器的东西不是很难 ...
分类:
编程语言 时间:
2018-04-18 23:35:20
阅读次数:
208
[抄题]: Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Return [暴力解法]: 时间分析: 空间分析: [优化后]: 时间分析: 空间分析: [奇葩 ...
分类:
其他好文 时间:
2018-04-16 16:10:59
阅读次数:
165
011题目 杨辉三角定义如下: 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 问题:给出制定的值,输出直到该行的杨辉三角 流程分析: 1、找规律: 每一行的开头和结尾都是一个1 每行的中间的值都是前一行每个list[i]+list[i+1]的值 2、程序流程 ...
分类:
其他好文 时间:
2018-04-13 16:16:26
阅读次数:
136
1 ''' 2 1 3 1, 1 4 1, 2, 1 5 1, 3, 3, 1 6 1, 4, 6, 4, 1 7 ''' 8 # def YangHui (num = 10): 9 # LL = [[1]] 10 # print([1]) 11 # for i in range(1,num): 1... ...
分类:
其他好文 时间:
2018-04-11 21:44:59
阅读次数:
184
1 #include 2 int main(){ 3 int i,j,n; 4 int a[13][13]; 5 do{ 6 printf("Enter n(1—12):"); 7 scanf("%d",&n); 8 }while(!(n>=1&&n<=12)); 9 for(i=0;i<=n;i+... ...
分类:
编程语言 时间:
2018-04-11 00:11:35
阅读次数:
191
1 #include 2 int main(){ 3 int i,j,n,c; 4 do{ 5 printf("Enter n(1—12):"); 6 scanf("%d",&n); 7 }while(!(n>=1&&n<=12)); 8 for(i=0;i<=n;i++){ 9 c=1; 10 .... ...
分类:
编程语言 时间:
2018-04-11 00:05:40
阅读次数:
186
问题: 编写程序,根据输入的正整数n(1<=n<=12),输出相应的杨辉三角图案,例如,当n=5时,将输出: 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 分析: 当输入n的值后,应共输出n+1行(不计空行),显然用循环结构,输出行的行号可以是1至n+1,也 ...
分类:
编程语言 时间:
2018-04-11 00:00:11
阅读次数:
268
给定一个索引 k,返回帕斯卡三角形(杨辉三角)的第 k 行。例如,给定 k = 3,则返回 [1, 3, 3, 1]。注:你可以优化你的算法到 O(k) 的空间复杂度吗?详见:https://leetcode.com/problems/pascals-triangle-ii/description/ ...
分类:
其他好文 时间:
2018-04-05 13:27:18
阅读次数:
209
public class 杨辉三角 { public static void main(String args[]) { int x=10; int num[][] = new int[x][x]; for(int m=0;m<x;m++) for(int n=0;n<=m;n++) { if(n= ...
分类:
其他好文 时间:
2018-04-03 22:09:47
阅读次数:
160
伊多 package mypackage; import java.util.*; class YangHui { public static void main(String[] args) { System.out.println("请输入层数:"); int c; //定义一个变量输入杨辉三角 ...
分类:
其他好文 时间:
2018-04-02 22:30:11
阅读次数:
197