CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - pascal-s

搜索资源列表

  1. Yang-hui-triangle-algorithm

    0下载:
  2. 用java语言实现数学中所学的杨辉三角,该算法简单-Using java language learning mathematics, Pascal' s Triangle, the algorithm is simple
  3. 所属分类:Applet

    • 发布日期:2017-11-10
    • 文件大小:10120
    • 提供者:lxt
  1. yfsj

    0下载:
  2. 杨辉三角的显示,这里用到了两种算法,其中运用了动态申请内存。-Display of Pascal' s Triangle, where the use of two algorithms, which use dynamic application memory.
  3. 所属分类:ELanguage

    • 发布日期:2017-11-27
    • 文件大小:1024
    • 提供者:吴胜邦
  1. yanghuisanjiao

    1下载:
  2. 打印杨辉三角 每一行的第一个和最后一个都是1,而中间元素是由表达式 a[i][j] =a[i-1][j-1] + a[i-1][j] 计算出来。因为要使用上面的数据,这样我们想到了用二维数组进行数据的存储。-Print Pascal' s Triangle
  3. 所属分类:Other systems

    • 发布日期:2017-12-01
    • 文件大小:2807
    • 提供者:方程
  1. dayingyanghuisanjiao

    0下载:
  2. 利用队列的实现打印杨辉三角,要求打印层数由用户从键盘输入-The queue implementation Print Pascal' s Triangle requiring the printing layers by the user input from the keyboard
  3. 所属分类:Other systems

    • 发布日期:2017-11-28
    • 文件大小:247062
    • 提供者:方程
  1. mat

    0下载:
  2. 高斯列主消元法、打印杨辉三角MATLAB程序-The Gaussian main elimination method, MATLAB program to print Pascal' s Triangle
  3. 所属分类:Other systems

    • 发布日期:2017-12-02
    • 文件大小:103398
    • 提供者:zhiwei_zhang
  1. yanghui--sanjiao

    0下载:
  2. 杨辉三角的示例程序,由于数据结构学习。二项式定理与杨辉三角形是一对天然的数形趣遇,它把数形结合带进了计算数学。求二项式展开式系数的问题,实际上是一种组合数的计算问题。-The sample program in Pascal' s Triangle, learning due to the data structure. The binomial theorem Triangle is a natural form interesting case of it into computati
  3. 所属分类:Algorithm

    • 发布日期:2017-11-20
    • 文件大小:896679
    • 提供者:lishuohao
  1. duilieshiyan

    0下载:
  2. 队列的相关实验,如 1.杨辉三角 2.一二三报数-Queue of related experiments, such as 1. Pascal' s Triangle (2) one hundred twenty-three reported the number of
  3. 所属分类:Data structs

    • 发布日期:2017-11-28
    • 文件大小:15397
    • 提供者:吴璨
  1. yanghuistriagle

    0下载:
  2. 杨辉三角问题,利用数据结构的队列问题,可以将杨辉三角打印出来 -Pascal' s Triangle, queue data structure can be Pascal' s Triangle print out
  3. 所属分类:Windows Kernel

    • 发布日期:2017-12-02
    • 文件大小:173298
    • 提供者:朱晓东
  1. yanghuisanjiao

    0下载:
  2. c语言经典程序之找打印杨辉三角,对c语言初学者很有用。-c language classic procedures of the find print Pascal' s Triangle useful c language for beginners.
  3. 所属分类:Other systems

    • 发布日期:2017-11-29
    • 文件大小:12639
    • 提供者:tmac
  1. qqq

    0下载:
  2. C++中运用栈和队列实现杨辉三角的运算源码-C++ use of stack and queue source computing Pascal' s Triangle
  3. 所属分类:CSharp

    • 发布日期:2017-11-17
    • 文件大小:2942714
    • 提供者:dndxzjrq
  1. yanghui

    0下载:
  2. 此程序为计算杨辉三角的程序,其中还包含了计算正金子塔型,倒金子塔型的程序,一次就可以得出图行。-This procedure for the calculation of Pascal' s Triangle program, which also includes the calculation is a pyramid-type inverted pyramid-type program, a line can be drawn on Figure.
  3. 所属分类:Algorithm

    • 发布日期:2017-11-29
    • 文件大小:2566
    • 提供者:落雪飘花
  1. Triangle_of_multiple_solutions

    0下载:
  2. 杨辉三角的多种解法 ,用c语言实现的,不同的表示形式对应着不同的算法-Pascal' s Triangle of multiple solutions, c language
  3. 所属分类:Data structs

    • 发布日期:2017-12-01
    • 文件大小:3856
    • 提供者:小易
  1. CPPsource-code

    0下载:
  2. 关于c++的一些简单的问题应用,包括小牛问题,杨辉三角,九九表等多种应用求解-Some simple questions about c++ of applications, including the Mavericks, Pascal' s Triangle, 99 tables and a variety of applications such as solving
  3. 所属分类:CSharp

    • 发布日期:2017-11-27
    • 文件大小:5067
    • 提供者:王兴亮
  1. 6_14

    0下载:
  2. 计算杨辉三角的前n行,并显示在屏幕上,用子程序实现,键盘输入n-The calculation of the first n rows of Pascal' s Triangle, and displayed on the screen, subroutines, keyboard input n
  3. 所属分类:assembly language

    • 发布日期:2017-11-15
    • 文件大小:2317
    • 提供者:赵荣
  1. test_java

    0下载:
  2. 1、 求一维数组的最大值和最小值 2、 用一维数组输出杨辉三角 3、 找出一个二维数组的鞍点 4、 找出两个字符串中所有共同的字符 5、 输出金额的中文大写形式 6、 实现一个复数类 7、 实现一个银行账户类 8、 编写程序实现判断及识别标识符的功能 9、 实现一个计算器 10、 编程实现一个用户登录窗口,其中用户名要求为10位的数字,且第一个数字不能为0. -1, find the one-dimensional array of maximum and
  3. 所属分类:Document

    • 发布日期:2017-11-20
    • 文件大小:26990
    • 提供者:徐福珍
  1. c-program-example

    0下载:
  2. c程序实例 其中包含递推 杨辉三角 冒泡等各种算法-the c program instance contains recursive Pascal' s Triangle bubbling algorithm
  3. 所属分类:CSharp

    • 发布日期:2017-11-15
    • 文件大小:6281130
    • 提供者:cj
  1. YangHui_Triangels

    0下载:
  2. 杨辉三角C语言版本,希望能够帮到你这是一个比较简单也是比较常用的算法,希望能够帮到你-Pascal' s Triangle C language version, hoping to help you this is a relatively simple algorithm is relatively common, hoping to help you
  3. 所属分类:Other systems

    • 发布日期:2017-12-05
    • 文件大小:164819
    • 提供者:陆慧博
  1. task

    0下载:
  2. 杨辉三角的实现,杨辉三角形,又称贾宪三角形,帕斯卡三角形,是二项式系数在三角形中的一种几何排列。-Pascal' s Triangle to achieve, Triangle, also known as Jia Xian triangle, Pascal' s triangle, binomial coefficients in a triangle is a geometric arrangement.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-17
    • 文件大小:206987
    • 提供者:tanxin
  1. yanghui

    0下载:
  2. 对数学中杨辉三角的巧妙实现,适合于初学者-Mathematics in Pascal' s Triangle cleverly achieved, suitable for beginners
  3. 所属分类:Algorithm

    • 发布日期:2017-11-30
    • 文件大小:798
    • 提供者:李璐平
  1. Yanghui

    0下载:
  2. 实现杨辉三角,提示用户输入需要输出的杨辉三角的行数,enter后系统输出指定行数的杨辉三角-Pascal' s Triangle realize that prompts the user to enter required output Pascal' s Triangle rows, enter the system outputs the specified number of rows Pascal' s Triangle
  3. 所属分类:Java Develop

    • 发布日期:2017-12-02
    • 文件大小:1959
    • 提供者:spring-劲
« 1 2 3 4 5 67 8 »
搜珍网 www.dssz.com