搜索资源列表
suanshubiaodashi
- 关于栈中算术表达式求法 别人写的,觉得很好 十分敬佩-on the stack arithmetic expression Solution written by someone else, a very good feel admiration
STl_diff
- stl编写的文件比较程序,适合STL的学习者,使用了很多STL的技巧-stl paper prepared by the procedure more suitable for STL learners, use a lot of skills STL
给定n 位正整数a,去掉其中任意k≤n 个数字后
- 给定n 位正整数a,去掉其中任意k≤n 个数字后,剩下的数字按原次序排列组成一个新的正整数。对于给定的n位正整数a 和正整数k,设计一个算法找出剩下数字组成的新数最小的删数方案。 对于给定的正整数a,编程计算删去k个数字后得到的最小数。 ,Given n-bit positive integer a, which removed any k ≤ n digits, the remaining number of the original order to form a new po
STL.zip
- source code from Mastering The Standard C++ Classes using C++. 1) The source code listings from each chapter can be found in the listings directory. The listings directory is divided by chapter. 2) A html quick reference for the mo
sliding
- 求出sliding window的最大最小值-n array of size n ≤ 106 is given to you. There is a sliding window of size k which is moving from the very left of the array to the very right. You can only see the k numbers in the window. Each time the sliding window moves ri
daoxu
- 利用STL提供的容器和算法,对数组里的三个数倒序输出。-Provided by the use of STL containers and algorithms, of the array in reverse order of the three the number of output.
EffectiveSTL-revised
- 很好的介绍STL的资料,不可多得,呵呵。-STL a good introduction to the information hard to come by, huh, huh.
chat
- Basicaly,a chatterbot is a computer program that when you provide it with some inputs in Natural Language (English, French ...) responds with something meaningful in that same language. Which means that the strength of a chatterbot could be directly
200510251140228859
- STL的轻松入门,很基础性的文章,是不错的,推荐一下-STL easy entry, it is the basis of the article is good and recommended by some
howcouldyoustudiC
- First, Generic Programming is sort of invented by Alexander Stepanov and David Musser, who, and several others including Bjarne Stroustrup and Andrew Knoenig, introduced the whole C++ Templates system and essentially “the” STL into C++. This means th
stack
- 手动编写的一个C++的栈,功能与STL的相同-Manual prepared by a C++ stack, functions the same as with the STL
Queues
- lecture material about Queues. Adopted from E-book "Data Structures with C++ using STL" by William Ford, William To-lecture material about Queues. Adopted from E-book "Data Structures with C++ using STL" by William Ford, William Topp
Stacks
- Lecture material on Stacks, adopted from E-book "Data Structures with C++ using STL" by William Todd, William Ford
LinkedLists
- Power Point Presentation/Lecture material on STL topic Linked Lists, adopted from book "Data Structures with C++ using STL" by William Ford, William To-Power Point Presentation/Lecture material on STL topic Linked Lists, adopted from book "Data Struc
Vector_Deque
- Power Point Presentation/Lecture Material on Vectors and Deques (C++ STL), adapted from "Data Structures with C++ using STL" by William Ford, William To-Power Point Presentation/Lecture Material on Vectors and Deques (C++ STL), adapted from "Data Str
ssd7exercise4
- 1使用到了stl sorting 2stl find 3实现所有声明的函数。 关键方法是: virtual Listing sort(string field) 根据选择"email," "start," "close," and "quantity."来对list中的advertisements进行排序。 virtual Listing filter(string keyword) 筛选出whose name or descr iption contains
STL_line_detection
- 利用STL算法技术识别位图中的线段(刻线) 刻线识别技术是机器视觉技术中的重要内容之一。-this software can detect straight line in a bitmap by the use of STL technique
tree-2.65
- 类STL的Tree Class. Open Source. 很多项目都有用到。作者:Kasper Peeters reference:http://tree.phi-sci.com/-a STL-like Tree Class which created by Kasper Peeters. It is an open source file and has already widely used in many mature projects
Addison.Wesley.Designing.Components.with.the.C++.
- Aims of this book The book has two aims. As a technical reference, the reference document mentioned earlier is hardly suited to explain the concepts of the STL. Therefore, the first aim is to present how the STL can be used in a sensible way. I
Stack-by-List
- 通过一个链表来实现栈,和STL中的实现方法不一样。-Implementing the Stack by List