CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 WEB源码 JSP源码/Java 搜索资源 - n

搜索资源列表

  1. 单链表排序输入n个数,用单链表

    0下载:
  2. 单链表排序输入n个数,用单链表(任意算法)对其进行排序并按从小到大顺序输出。 ,Single-linked list to sort n the number of input, using a single list (any algorithm) and sort them from small to large order of output.
  3. 所属分类:JSP源码/Java

    • 发布日期:2017-03-23
    • 文件大小:911
    • 提供者:wangzhequn
  1. 描述:把M个同样的苹果放在N个同样的盘子里

    0下载:
  2. 描述:把M个同样的苹果放在N个同样的盘子里,允许有的盘子空着不放,问共有多少种不同的分法?(用K表示)5,1,1和1,5,1 是同一种分法。 输入:第一行是测试数据的数目t(0 <= t <= 20)。以下每行均包含二个整数M和N,以空格分开。1<=M,N<=10。 输出:对输入的每组数据M和N,用一行输出相应的K。 输入实例: 1 7 3 输出实例:8 -Descr iption: The same apples to the
  3. 所属分类:JSP源码/Java

    • 发布日期:2016-01-24
    • 文件大小:1024
    • 提供者:雷哥
  1. fuperm

    0下载:
  2. 应用JBuilder环境开发,输入一个正整数n,输出1~n的组成的全排列-JBuilder application development environment, enter a positive integer n, output 1 ~ n the composition of the entire array
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:5441
    • 提供者:ruohana
  1. javaalgorithm

    0下载:
  2. 包括冒泡排序,归并排序,N皇后,最小生成树等经典算法的java实现代码-Including bubble sort, merge sort, N Queen, such as the classic minimum spanning tree algorithm java code
  3. 所属分类:Java Develop

    • 发布日期:2017-04-06
    • 文件大小:8207
    • 提供者:lrf
  1. ddvip_com_04065038a97af4

    0下载:
  2. 采用循环,而不是递规,系统资源占有少可计算 n 皇后问题把问题线性化处理,可以把问题分块,在分布式环境下用多台计算机一起算。-The use of the cycle, rather than delivery rules occupy less system resources computable n Queen of issues to deal with the problem of linear, you can block the problem, in distributed en
  3. 所属分类:Java Develop

    • 发布日期:2017-04-13
    • 文件大小:2962
    • 提供者:
  1. queen

    0下载:
  2. n皇后问题,能够快速的算出24个点,24个点过侯程序会变慢-the question of queen
  3. 所属分类:Java Develop

    • 发布日期:2017-04-07
    • 文件大小:592
    • 提供者:顾天龙
  1. simulator

    0下载:
  2. Go back n protocol with hamming code implementation. this is made in java 5.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-06
    • 文件大小:7560
    • 提供者:bhuwan
  1. go-back-n

    0下载:
  2. 通信编程中常用到的go-back-n算法的模拟显示,采用Applet可视化模拟,带算法说明文档,用于对GBN算法的理解。-Commonly used in communications programming to the go-back-n algorithm for the simulation showed that using Applet visual simulation, with algorithm documentation, understanding the algorit
  3. 所属分类:Java Develop

    • 发布日期:2017-03-23
    • 文件大小:13182
    • 提供者:endlessway
  1. n-queen-problem-display

    0下载:
  2. n后问题演示程序,算法分析与设计,递归算法-N queen problem demonstration program, the algorithm analysis and design, recursion algorithm
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:4223
    • 提供者:jade
  1. n-queen

    0下载:
  2. 解决n皇后问题 利用回溯算法 n后问题等于在n×n格的棋盘上放置n个皇后,任何2个皇后不放在同一行或同一列或同一斜线上。即规定每一列放一个皇后,不会造成列上的冲突;当第i行被某个皇后占领后,则同一行上的所有空格都不能再放皇后,要把以i为下标的标记置为被占领状态。用回溯法解n后问题,用完全n叉树表示解空间。可行性约束Place剪去不满足行,列和斜线约束的子树。从根节点出发搜索解空间树。算法搜索至空间树的任何一结点时,先判断该点是否包含问题的解。如果肯定不包含,则跳过对以该结点为根的子树的搜索,
  3. 所属分类:Java Develop

    • 发布日期:2017-03-25
    • 文件大小:869
    • 提供者:yuts
  1. In-three-loop-statement-for-n

    0下载:
  2. 用三种循环语句求n!绝对真是的!!!课程学习必要的,广大学生必备-In three loop statement for n! Absolutely really! ! ! The course of study is necessary, the majority of students essential! ! !
  3. 所属分类:JavaScript

    • 发布日期:2017-11-10
    • 文件大小:2413
    • 提供者:杨振宁
  1. C(n-m)

    0下载:
  2. JAVA代码:该代码实现功能为数学中的C(n,m),n为下标,m为上标。-JAVA code: This code implements a mathematical function of C (n, m), n is the subscr ipt, m is superscr ipt.
  3. 所属分类:Java Develop

    • 发布日期:2017-11-14
    • 文件大小:592
    • 提供者:
  1. N--java-

    0下载:
  2. 利用递归机制,可以很容易的求解n皇后问题。针对八皇后,总共有92种解。下面将给出N-皇后问题的一般求解代码,在这里代码是使用java编码的。-Recursive mechanism that can easily solve the n-queens problem. For eight queens, a total of 92 kinds of solutions. The following will give a general N-queens problem solving code
  3. 所属分类:JavaScript

    • 发布日期:2017-04-12
    • 文件大小:2071
    • 提供者:gy
  1. n queen的管道风格,调用返回风格,黑板风格等实现

    0下载:
  2. n queen的管道风格,调用返回风格,黑板风格,管道风格实现
  3. 所属分类:JSP源码/Java

  1. n!

    0下载:
  2. 能求N的阶层,能认为规定N的数值大小,但不可过大。-N can find the class specified numerical size N can think of, but not too large.
  3. 所属分类:JavaScript

    • 发布日期:2017-11-14
    • 文件大小:3171
    • 提供者:tian
  1. N-Queen

    0下载:
  2. N-Queen Problem Solution
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:1156
    • 提供者:Faysal
  1. GM(1-n)

    0下载:
  2. gm(1,n)的灰色预测模型,不是很全面,但是可以使用-gray forcast used in matlab
  3. 所属分类:JavaScript

    • 发布日期:2017-04-12
    • 文件大小:1406
    • 提供者:娄雨欣
  1. GO-BACK-N

    0下载:
  2. 编程实现可靠数据传输原理 GO-BACK-N-Programming to realize reliable data transmission principle of the GO- BACK- N
  3. 所属分类:JavaScript

    • 发布日期:2017-04-29
    • 文件大小:11630
    • 提供者:唐棠
  1. find-n-and-statistics-the-number

    0下载:
  2. 在一段字符串当中找到字母n,并统计它的个数-Find n in the words,and calculate the number it has occured.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-14
    • 文件大小:3402
    • 提供者:程振财
  1. Queen

    0下载:
  2. 用java语言,基于回溯法实现N皇后的位置放置方案,程序可以通过参数来设置要解决几个皇后的放置,默认是4个。(Using java language, backtracking method is used to implement the placement plan of N queens. The program can be set by parameters to solve the placement of several queens, and the default is 4.)
  3. 所属分类:Java编程

    • 发布日期:2018-04-19
    • 文件大小:1024
    • 提供者:阿飞3536
« 12 3 4 5 6 7 8 9 10 ... 29 »
搜珍网 www.dssz.com