日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

LeetCode——Pascal#39;s Triangle

發(fā)布時間:2025/3/13 编程问答 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 LeetCode——Pascal#39;s Triangle 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

Given?numRows, generate the first?numRows?of Pascal's triangle.

For example, given?numRows?= 5,
Return

[[1],[1,1],[1,2,1],[1,3,3,1],[1,4,6,4,1] ] 原題鏈接:https://oj.leetcode.com/problems/pascals-triangle/

題目 :給定n,生成n行的帕斯卡三角形。

思路:帕斯卡三角形 也就是 楊輝三角形,依據(jù)數(shù)學知識,知當中每一行的數(shù)字代表的是 (a+b)^n 的系數(shù)。于是此題能夠轉(zhuǎn)化為求組合數(shù) C(n,k)。把每一行的系數(shù)算出來就可以。

public static List<List<Integer>> generate(int numRows) {List<List<Integer>> list = new ArrayList<List<Integer>>();if (numRows < 1)return list;for (int i = 0; i < numRows; i++) {List<Integer> li = new ArrayList<Integer>();for (int j = 0; j <= i; j++) {li.add(Integer.valueOf(cnk(i, j) + ""));}list.add(li);}return list;}//求組合數(shù)public static BigInteger cnk(int n, int k) {BigInteger fenzi = new BigInteger("1");BigInteger fenmu = new BigInteger("1");for (int i = n - k + 1; i <= n; i++) {String s = Integer.toString(i);BigInteger stobig = new BigInteger(s);fenzi = fenzi.multiply(stobig);}for (int j = 1; j <= k; j++) {String ss = Integer.toString(j);BigInteger stobig2 = new BigInteger(ss);fenmu = fenmu.multiply(stobig2);}BigInteger result = fenzi.divide(fenmu);return result;}


版權(quán)聲明:本文博客原創(chuàng)文章,博客,未經(jīng)同意,不得轉(zhuǎn)載。

轉(zhuǎn)載于:https://www.cnblogs.com/yxwkf/p/4665429.html

總結(jié)

以上是生活随笔為你收集整理的LeetCode——Pascal#39;s Triangle的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。