搜索资源列表
Bastile
- XC的儿子小XC最喜欢玩的游戏用积木垒漂亮的城堡。城堡是用一些立方体的积木垒成的,城堡的每一层是一块积木。小XC是一个比他爸爸XC还聪明的孩子,他发现垒城堡的时候,如果下面的积木比上面的积木大,那么城堡便不容易倒。所以他在垒城堡的时候总是遵循这样的规则。小XC想把自己垒的城堡送给幼儿园里漂亮的女孩子们,这样可以增加他的好感度。为了公平起见,他决定把送给每个女孩子一样高的城堡,这样可以避免女孩子们为了获得更漂亮的城堡而引起争执。可是他发现自己在垒城堡的时候并没有预先考虑到这一点。所以他现在要改造城
hanoi
- 汉诺塔代码,从第一个木桩中,把所有盘子从大到小搬移到第三个木桩中.-HANOR code from a wooden blocks, all the dishes to the smallest movement pickets were third.
search
- 索引顺序表查找,索引顺序查找即分块查找,是将顺序表分成诺干块。-Indexed sequential table lookup, the index in order to find that the search block is to the order of the table is divided into Nokan blocks.
CRC
- CRC校验采用多项式编码方法。被处理的数据块可以看作是一个n阶的二进制多项式-CRC checksum using polynomial encoding. Data blocks can be processed as a binary n-order polynomial
shunxu
- 试编写一个用索引进行顺序查找的程序。 (1) 要求将数据以分块有序形式分别存放在不少于10个磁盘文件(块)中,每个文件中不少于10个数据,并能在内存中自动建立索引表; (2) 对任意待查找的关键字,若查找成功,给出其关键字比较次数。 (3) 自行设计测试用例。 -Try to write a sequential search using the index procedure. (1) requires the data to the form of block order w
Blocksproblem
- n this problem you will model a simple block world under certain rules and constraints. Rather than determine how to achieve a specified state, you will ``program a robotic arm to respond to a limited set of commands. The Problem The probl
wenjiancunchukongjian
- 文件存储空间的算法 可以显示此盘块的使用情况-File storage space the algorithm can show the use of this disk blocks
CPPkuaisupaixu
- 数组块数排序,用三种方式进行排序,可自己输入数列排序,自动生成数列排序-Sorting an array blocks, with three ways to sort, you can enter the series of their own sort, sort automatically generated series
QuadTree
- 四叉树算法,使用四叉树生成可局部加密的有限元网格-Quad tree algorithm, the use of quadtree generate local refinement finite element mesh
cdecl-blocks_cPP_-2.5.tar
- 分析C++中的指针或引用声明,非常有用的程序-Analysis in C++ pointers or references to statements, very useful program. .
BlackBound
- 有有一间长方形的房子 ,,地上铺了红 色、黑色两种颜色的正方形瓷砖。你站在其中 一块黑色的瓷砖上块黑色的瓷砖上,,只能向相邻的黑色瓷砖移只能向相邻的黑色瓷砖移 动。请写一个程序,计算你总共能够到达多少 块黑色的瓷砖块黑色的瓷砖 -There are a rectangular house between the rectangular house, to spread the red floor is covered with red and black co
ExternalSorting
- C++实现的external sorting算法,将文件分块后进行sort-merge最后实现排序-C++ implementation of the external sorting algorithm, divide the large file into blocks and use the sort-merge mechanism
xiaojianzhushi
- 说明 沉默是一位小的建筑师,他喜欢他的积木,使各种建筑物。现在他又有了新的问题。他要建立建设一个大小为2*2* N的积木,但他只有一种块大小为1* 1 * 2。现在,他想知道他有多少种方法可以兴建的他的积木。 输入 有几行输入。每行输入数据集。有两个整数N和P(1<= N <=10亿,1<P <= 1,000,000),在每个测试案例。输入EOF结束。 输出 对于每个测试用例,输出一个行包含一个整数,这是他可以修建的积木数量di
1162-Building-with-Blocks
- 求和由于最后一扇门肯定在正方形的边界举,对每一个中点都求出要从给定点P到达此中点的所需要的最少的门的个数。-hello word wellcom to our school Delphi/java,CppBuilder visual c++Gone Fishing (1042) - ACM/ICPC Regional Contest East Central North America1999Descr iption Archeologists from the Ant
LexaYacc
- his document explains how to construct a compiler using lex and yacc. Lex and yacc are tools used to generate lexical analyzers and parsers. I assume you can program in C and understand data structures such as linked-lists and trees. The Overvie
bi-arbre
- 简单检索二叉树代码,适合学习,其中自带data,推荐用code blocks打开,编译文件-binaire arbre
vtkPolyData
- 标准的vtk绘制“积木”(多边形)的例子,可以设置各项数据的属性-Standard vtk drawing the example of the " building blocks" (the polygons), you can set the properties of the various data
To-Miss-Our-Children-Time-DP
- /*hdu4001To Miss Our Children Time DP 每块积木有四个参数a(长),b(宽),c(高),d(属性) d==0 它下面的积木为X a>=X.a b>=X.b d==1 a>=X.a b>=X.b&&(a>X.a||b>X.b) d==2 a>X.a&&b>X.b 所以先按长从小到大 再宽从小到大 属性从大到小排序 f[i]表示以第i个积木为顶的已搭积木的最大高度 */-/* Hdu400
maze
- 迷宫求解一般采用“穷举法”,逐一沿顺时针方向查找相邻块(一共四块-东(右)、南(下),西(左)、北(上))是否可通,即该相邻块既是通道块,且不在当前路径上。用一个栈来记录已走过的路径栈是限定仅在表尾(top)进行插入或删除操作的线性表。-Maze solving generally use the " exhaustive" one by one to find adjacent blocks in a clockwise direction (a total of four-
字符串插入块链实现
- 输入一串字符串,程序自动分割成8个一串的块链。整个程序通过链表实现,还可实现插入字符串功能。(Input a string of characters, the program is automatically divided into 8 string blocks. The whole program is implemented through linked list, and the function of inserting string is also realized.)