搜索资源列表
C源代码实例
- 包含220个C语言的各种源程序:001 第一个C程序 002 运行多个源文件 003 求整数之积 004 比较实数大小 005 字符的输出 006 显示变量所占字节数 007 自增/自减运算 008 数列求和 009 乘法口诀表 010 猜数字游戏 011 模拟ATM(自动柜员机)界面 012 用一维数组统计学生成绩 013 用二维数组实现矩阵转置 014
WL40987330 C语言算法集
目录
第一部分 基础篇
001 第一个C程序
002 运行多个源文件
003 求整数之积
004 比较实数大小
005 字符的输出
006 显示变
素数环
- 回溯法解决素数环问题
loop
- 编程实现素数环的程序,很有意思,程序不是很复杂,很容易看懂。-Programming prime ring procedures, very interesting, is not a very complicated procedure, it is easy to understand.
s
- 6. 素数环问题 把从1到20这20个数摆成一个环,要求相邻的两个数的和是一个素数。 分析:用回溯算法,考察所有可能的排列。 -6. Prime numbers loop problem 1-20 from 20 before the number into a ring, adjacent to both the number of requests and is a prime number. Analysis: The
prime
- 素数环: 把从1到10这10个数摆成一个环,要求相邻的两个数的和是一个素数。 〖问题分析〗 这是一道回溯的题目。从1开始,每个空位有9种可能,每种可能加入约束条件即可 1.与前面所有的数不重复 2.与前一个数和为素数(最后一个和第一个也要满足)。 〖算法流程〗 1、数据初始化; 2、递归填数: 判断第J种可能是否合法; A、如果合法:填数;判断是否到达目标(10个已填完): 是,打印结果;不是,递归填下一个;
hangdian1016
- Prime Ring Problem 杭州电子科技大学ACM在线判定系统的1016题素数环,本人自己写的算法,有兴趣的同学可以拿去参考下,正常情况是可以AC的-Prime Ring Problem, Hangzhou University of Electronic Science and Technology ACM determine the system' s 1016 title-line prime ring, I
sushuhuan
- 用VC++做的一个素数环程序,采用的数据结构师栈-With VC++ to do a prime ring program, teachers use the data structure stack
graph
- 用图里面dfs方法编写的素数环程序。在vc++6.0中编译通过,是一个DOS的窗口-Figure prepared using methods which dfs prime ring procedures. In vc++6.0 in the compiler, is a DOS window
suanfa2
- 分支限界法、分治法、动态规划法常见代码,素数环问题、背包问题、抄写书稿问题。-Branch and bound method, divide and conquer, dynamic programming method common code, prime ring problem, knapsack problem, the problem copying the manuscr ipt.
PrimCircle
- 实现素数环,实现素数环,
PrimeRing
- 素数环的java代码实现,数据结构上素数环的代码-Prime ring Java code realization, the data structure of the prime ring code
sushuhuan
- 素数环问题 把从1到20这20个数摆成一个环,要求相邻的两个数的和是一个素数。 分析:用回溯算法,考察所有可能的排列。-Central questions primes from 1-20 to 20 the number of put it into a ring, requiring two adjacent numbers and is a prime number. Analysis: backtracking al
mathCode.tar
- 实现了一些常用的数学算法,包括一些经典的问题,比如素数环,约瑟夫问题等-Achieve some common mathematical algorithms, including some classic problems, such as prime ring, Joseph problems
PrimeRing
- 将从1到n这n个整数围成一个圆环,若其中任意2个相邻的数字相加,结果均为素数,那么这个环就成为素数环。-From 1 to n all n integers which formed a circle, if any of two adjacent numbers add together, the results were prime, then the ring would become prime ring.
素数环
- 在vs2010平台上,实现素数环算法,适合大学生或者初学者在学习算法时使用。(A prime number loop is implemented.)