搜索资源列表
国际大学生程序设计竞赛题解
- 要想看看自己的编程水平有多高。除了开发项目和做出象样子的软件以外,还有一个很好的办法就是参加比赛.而国际大学生程序设计竞赛题解,为你提供了检验自己的一个很好的挑战。里面不仅有大量的例题,还有各种算法的分析和与实例的结合。是提高英文和编程能力的绝对好书了-To look at our own programming level is very high. In addition to development projects and to make the software look like t
n-Queen
- 算法设计:著名的n后问题:在nXn的棋盘上放彼此不受攻击的n个皇后,按国际象棋的规则,任何2个皇后不在同一行或同一列或同一斜线上. 本算法才用回朔法来解决.-algorithm design : n after the famous question : In nXn put on the chessboard of each other against attack n empress, according to the international rules of chess, any
fox
- Turbo C - (C) Copyright 1987, 1988 by Borland International */ #define S_IREAD 0x0100 /* from SYS\\STAT.H */ #define S_IWRITE 0x0080 /* from SYS\\STAT.H */ #define TRUE 1 #define FALSE 0 #define MSGHEADER \"MICROCALC - A Turbo C D
knight_Cplusplus
- 解国际象棋骑士巡游问题的C++源代码,主程序为knight.c-Solutions International Chess Knight parade of C source code, the main program for knight.c
knight
- 骑士遍历问题,在一个n*n个方格的国际象棋棋盘上,马(骑士)从任意指定方格出发,按照横1 步竖2 步,或横2 步竖1步的跳马规则,走遍棋盘的每一个格子,且每个格子只走1次。-Knight, in an n * n box at the international chess board, Ma (Knight) from the arbitrary designation box and, in accordance with a further horizontal two-step vert
实用算法的分析与程序设计
- 本书总结了历届国际奥林匹克竞赛(IOI)的试题特点及我国参赛选手的培训经验。书中许多例题取自历届大赛的试题及中国队选手的训练题目,针对问题讲解了解题的关键思路及如何灵活运用有关的算法知识。-the book summarizes the successive international Olympiad (IOI) and the characteristics of the questions my players training experience. Many examples from
马踏棋盘问题.
- 将马随即放在国际象棋的8×8棋盘Board[8][8]的某个方格中,马按走棋规则进行移动。要求每个方格只进入一次,走遍棋盘上全部64个方格。编制非递归程序,求出马的行走路线,并按求出的行走路线,将数字1,2,……,64依次填入一个8×8的方阵,输出之。-Ma immediately on the international chess 8 8 chessboard Board [8] [8] of a box, MA by the rules of chess go mobile. Requi
国际大学生程序设计竞赛浙江大学在线评测系统
- 国际大学生程序设计竞赛浙江大学在线评测系统(ZOJ)上700多道题的源码,非常珍贵和难找,吐血分享-International Collegiate Programming Contest of Zhejiang University Online Evaluation System (ZOJ) on more than 700 questions of the source, very precious and hard to find, hematemesis Share
8_QUEENS
- 八皇后问题:八皇后问题是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Eight Queen s question: Pat s problem is an ancient and well-known problem is a typical example of backtracking algorithms. The pr
eightqueen
- 八皇后游戏的说明: 问题的提出:八皇后是个古老而有趣的游戏,是由高斯于1850年首先提出的。 要求在国际象棋的棋盘上放置八个皇后,使其不能相互攻击,即任意两个皇后不能处于 棋盘的同一行、同一列和同一条对角线上。试问有多少种放法? 基本思想是:先把皇后放在(0,0)位置,然后把1号皇后放在(1,j)位置, 使其满足要求。接着放2号皇后,依此类推。遇到某个皇后如把她无论放在该行的任意 位置均不满足要求,则前一个皇后放置不当,须重新放置前一皇后,如8个皇后均按要 求放置
5_queen
- 设在初始状态下在国际象棋棋盘上没有任何棋子(皇后)。然后顺序在第1行,第2行,…。第8行上布放棋子。在每一行中有8个可选择位置,但在任一时刻,棋盘的合法布局都必须满足3个限制条件,即任何两个棋子不得放在棋盘上的同一行、或者同一列、或者同一斜线上。试用递归与非递归的方法编写算法,求解并输出此问题的所有合法布局-In the initial state in the international chess board does not have any pieces (Queen' s).
8huanghou
- 八皇后问题是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Eight queens problem is an old and well-known problem is a typical example backtracking algorithm. The problem is that the nineteenth ce
Dobb_Algorithms_Collection
- 国际经典算法与数据结构,包含10本英文原版书,有源代码-International classical algorithms and data structures, including the 10 original English books, source code
CQueen
- //八皇后问题:在国际象棋中,能否在空格棋盘上摆放八个皇后,并使其中任意两个皇后不能在同一行或同一列或同一对角线上,编写完整的摆放八皇后问题的程序。要求:第一个皇后的起始位置由键盘输入,国际象棋的棋盘为8*8的方格。-//Eight queens problem: In chess, can be placed in the space of eight on board the Queen, the Queen can not make any two of them in the same
xmlDecode_src
- 基于轻量级高效XML编解码,将树形数据结构用于最小化DOM模型XML编解码器的开发。在解析XML文本时,基于Expat解释器将XML字符串构造成树状结构 编码时构造DOM树结构,采用非递归深度优先法遍历树,将其串行化成XML串。本编解码器解决了国际化语言关键问题,是一个通用、高效的工业级XML应用支撑模块-Lightweight and efficient XML-based codec, the tree data structure used to minimize the DOM mode
Eight-empresses
- 八皇后问题是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。-Eight the empress problems are old but famous a thou problems, is the typical model example that returns to trace calculate way.The pro
chess
- 这是一份国际象棋的源程序,实现了两个玩家在联网的状态下进行对战的功能,使用控制台的方式实现,十分适合C++初学者学习数据结构,套接字等,采用VS2010环境开发-This is the source of an international chess, two players in the state of networked multiplayer capability, use the console to achieve very For C beginners to learn da
shulun
- 基于acm国际大学生程序设计中用到的数论知识,适合初学者的学习-Use knowledge of number theory, based on the acm International Collegiate Programming for beginners learning
IEEE33jdsjsm
- IEEE33节点的数据整理于此处,便于查阅。无错误的收集在一起,方便参考,实验。-IEEE33 node data collation in here for ease of reference. Reference to international standards at the same time easily accessible.
1416
- 飞机加油问题 对于给定的n个国际机场到中心机场的距离d1,d2,...,dn ,以及地面加油费用s,编程计算从距中心机场最远的国际机场飞到中心机场的最少费用-For a given n international airport to the center of the airport from D1, D2,..., DN, as well as the ground refueling cost s, programming calculation from the center of th