搜索资源列表
charchongzai
- C++运算符的重载举例,几个例子,-C Operators of heavy for example, a few examples - huh-huh
cfile
- 该代码可实现简单行编辑程序例,串操作应用举例,实现串的存储管理
123
- 用C语言实现递归下降语法分析,编译实验程序举例。
4
- 迷宫问题是《数据结构》中是作为栈的典型应用举例,且迷宫是以二维数组来存储的,表面上看似乎迷宫问 题是一种特殊问题的解决方法,其实迷宫问题是一种特殊形式的图的问题。因此,迷宫问题总是可以转化为图的问题来 解决的。讨论如何将迷宫问题转化成图的问题,以及如何利用图的算法来解决迷宫问题。
数据结构的C++描述
- 目 录 译者序 前言 第一部分 预备知识 第1章 C++程序设计 1 1.1 引言 1 1.2 函数与参数 2 1.2.1 传值参数 2 1.2.2 模板函数 3 1.2.3 引用参数 3 1.2.4 常量引用参数 4 1.2.5 返回值 4 1.2.6 递归函数 5 1.3 动态存储分配
Stack-examples
- 栈的几个应用举例——顺序栈、链栈结构定义与基本操作(SqStack_exercise.cpp,LinkStack_exercise.cpp),括号匹配(matching.cpp),表达式求值(evaluation.cpp),Ackerman递归函数的实现(Ackerman.cpp)-Stack a few application examples- the order of the stack, the stack structure is defined chain, and basic op
LongestIncSubSeq
- 求最长单调递增子序列。举例:原数组:1 5 1 3 1 56 21 6 86 2 1 6 5 22 1 5 9 62 1 3 56 31 1 56 3 1 1 66 3 1 6 6 3 1 6 6 1 结果: the longest monotonically increasing sub-sequence: Length: 14 Content:-Seeking the longest monotonically increasing subsequence. For exam
ordernumbers
- 基于C语言环境下的冒泡法排序的程序简单举例-order the numbers based on VC 6.0
Data-Collection-Data-Structure-
- 数据结构算法资料合集。将数据结构中的各种算法的代码做了简单的举例,让使用者方便查询数据结构算法-Data Collection Data Structure Algorithm. The data structure of the various algorithms to do a simple example code, allowing users to easily query data structure algorithms
Lecture-of-Dynamic-Programming-(DP)
- 上算法设计课课同学自己准备的讲座,ppt通过举例详细介绍了动态规划的原理,并附有实现源码与测试数据-Division on the algorithm design students prepare their own lectures, ppt described in detail by way of example the principles of dynamic programming, together with source code and test data to achiev
huisu
- 回溯的应用数据结构回溯的应用举例解决回溯(b a c k t r a c k i n g)搜索问题。-The application of retrospective application of retrospective application of an example data structure back
erchashu
- 二叉树的应用举例:将设计一个算法以确定把信号放大器放在何处。目标是要使所用的放大器数目最少并且保证信号衰减(与源端信号相关)不超过给定的容忍值。-Binary Application examples: the design of an algorithm to determine where to put the signal amplifier. Goal is to make the minimum number of amplifiers used in signal attenuati
language
- 用C++语言来实现单链表举例的内容和程序-In C++ language to achieve a single linked list examples of the content and procedures
migongqiujie
- 数据结构中,栈的运用举例,迷宫求解。利用穷举求解的方法-Data structure, the use of the stack example, maze solving. The use of brute force method of solving
car_wash
- 数据结构与STL书中的洗车仿真程序,队列描述举例-simulation of car wash,it s a classic example of queue
hex-to-string
- 16进制转换三种方法测试通过,下面是使用举例,在VisualStudio2008+SP1及VC++6.0中调试通过-//The following is an example, debugging through VC++6.0 in VisualStudio2008+SP1
haxbiao
- 哈希表的应用举例,包括哈希表的在几种程序的的应用-Examples of the application of the hash table, including the hash table in several programs
StackandQueue
- 该ppt包含了栈和队列的数据结构及基本操作,同时还有栈的举例-This ppt contains the stack and queue data structure and basic operation, as well as examples of the stack
HuffmanTree
- 哈夫曼树的基本构建以及哈夫曼树构建成功的基本举例-The basic building Huffman trees and Huffman basic building a successful example
guess_number
- 猜数位 首先自动产生一个n位0-9数字,每位上的数字互不相同。 然后,程序接受玩家输入所猜测的n位不重复的数字; 接着,由程序比对符合的位数以及不符合但有出现的数字的数量。完全符合的数字会以A来表示,而不符合正确位置但有出现的数字则以B来表示。举例,如果正确答案是2345且玩家猜的是4395,则会得到2A1B。 最后,玩家在m次内猜测出完全相符的数字组合即为胜利。若没有在指定m回合完成,则给出准确答案。 注:m,n可以由玩家自行设定。若不设定,其缺省为n=4;m=