CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - stl
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - stl - List
[
Console
]
STLsourcecode3.3
DL : 0
STL源码,就是侯捷那本书所用的 源码。-STL source, Hou Jie, is the book used by the source.
Date
: 2008-10-13
Size
: 183.02kb
User
:
wmx
[
Console
]
stl
DL : 0
STL标准库源代码,非常经典的代码,学习STL的必备资料。
Date
: 2008-10-13
Size
: 276.29kb
User
:
隽语
[
Console
]
Hash_STL(Time)
DL : 0
使用C++语言的STL开发的一个用来进行大规模hash计算的程序,用来处理大规模ip地址的查找问题,输入的文件可以是从internet 上下载的ip地址数据,也可以自己输入数据,可以支持几百兆的数据文件的分析与查找。格式如下 ip1 ip2 ip3 ... 例如:100.100.100.100 200.200.200.200
Date
: 2008-10-13
Size
: 341.58kb
User
:
魏木木
[
Console
]
学生管理系统-STL版
DL : 0
一个用c++写的控制台版学生管理例子,主要用STL写成
Date
: 2010-01-28
Size
: 10.57kb
User
:
cbj6655
[
Console
]
STLsourcecode3.3
DL : 0
STL源码,就是侯捷那本书所用的 源码。-STL source, Hou Jie, is the book used by the source.
Date
: 2025-12-16
Size
: 183kb
User
:
wmx
[
Console
]
stl
DL : 0
STL标准库源代码,非常经典的代码,学习STL的必备资料。-STL standard library source code, the code is very classic, learning the necessary information on STL.
Date
: 2025-12-16
Size
: 276kb
User
:
隽语
[
Console
]
Hash_STL(Time)
DL : 0
使用C++语言的STL开发的一个用来进行大规模hash计算的程序,用来处理大规模ip地址的查找问题,输入的文件可以是从internet 上下载的ip地址数据,也可以自己输入数据,可以支持几百兆的数据文件的分析与查找。格式如下 ip1 ip2 ip3 ... 例如:100.100.100.100 200.200.200.200 -The use of C++ Language STL to develop a large-scale used for hash calculation procedures used to deal with large-scale search ip address the problem, type of document can be downloaded from the internet the ip address of the data can also input their own data, can support several hundreds of megabytes of data file analysis and search. The following format ip1 ip2 ip3 ... for example: 100.100.100.100 200.200.200.200
Date
: 2025-12-16
Size
: 341kb
User
:
魏木木
[
Console
]
Beyond_STL_cn
DL : 0
Date
: 2025-12-16
Size
: 337kb
User
:
John Smith
[
Console
]
Console_BankingSystem_prototype.ZIP
DL : 0
Console Win32/STL prototype of simple functional banking system.
Date
: 2025-12-16
Size
: 19kb
User
:
irx
[
Console
]
MapDemo_20100514
DL : 0
STL库中map的用法,教你如何使用map来添加和删除元素-STL map library usage, teach you how to use the map to add and delete elements
Date
: 2025-12-16
Size
: 6kb
User
:
周峰
[
Console
]
STL
DL : 0
STL标准库函数文档 希望对初学者有些帮助吧 -STL standard library functions documentation it wishes to be helpful for beginners
Date
: 2025-12-16
Size
: 204kb
User
:
wu guan feng
[
Console
]
SingleList
DL : 0
通过STL来模拟实现单链表的功能,提供通用的接口来调用-Through the STL to simulate the function of the singly linked list, to provide a common interface to call
Date
: 2025-12-16
Size
: 495kb
User
:
Darren
[
Console
]
map
DL : 0
最全面的STL中Map函数用法。包括建立,插入,删除,查找等。-Map function usage in the most comprehensive STL. Including create, insert, delete, search.
Date
: 2025-12-16
Size
: 19kb
User
:
程诚
[
Console
]
stl_sample
DL : 0
本程序提供一些stl的实例,帮助入门stl。其中有向量、队列、map等。-some stl samples.
Date
: 2025-12-16
Size
: 10kb
User
:
kevin
[
Console
]
STL
DL : 0
Date
: 2025-12-16
Size
: 5kb
User
:
孙健洪
[
Console
]
Farleysequence
DL : 0
用单链表实现法雷序列,不许使用STL容器-Farley sequence
Date
: 2025-12-16
Size
: 1.03mb
User
:
黄小旭
[
Console
]
maze
DL : 1
完成迷宫程序的设计 输入 从maze.txt文件读入迷宫,格式如下 其中第一行为迷宫的阶数N,接下来是一个N*N的矩阵代表迷宫,0为路径,1为障碍物。 实验要求 要求自学查询技术文档,利用STL 的stack 类,完成以下要求的功能: 1. 打印迷宫: DisplayMaze()或者重载<< 其中(1,0)位置和(N-2,N-1)位置打印“=>,其余的1的位置打印“##”,0的位置打印“ ”(两 个空格),注意每个位置都是两个字符。 打印示例: 2. 寻找走出迷宫的路径并输出 FindPath() 输出格式为: (1,1)->(2,1)->(2,2)->…… 并输出需要的步数。 3. 动态打印走迷宫的路径 WalkPath() 动态显示出走出迷宫的过程,每一次移动时都相应地修改显示状态。为了能让用户看清显示过程,必须使代码减速,做到大约每秒钟移动一次。为此,可在代码中插入等待语句,每次等待0.25秒的时间,即每秒钟走’4步。 你可能用到的语句: Sleep(250) 程序睡眠(in <windows.h>) system(“cls”) 清屏-Completed the design of the maze procedure Enter From maze.txt file read into the maze, the following format Wherein the first maze behavior order N, followed by a N* N matrix representing maze, path 0, and 1 is an obstacle. Experimental requirements Requires self-query technical documentation, use of STL stack class, complete the following requirements: Print maze: DisplayMaze or overloaded << Wherein the position of the (1,0) and position (N-2, N-1) Print "=> the rest position 1 Print"## ", the print position" (two Space), pay attention to each location are two characters. Print examples: Looking out of the labyrinth the path and the output FindPath () The output format is: (1,1)-> (2,1)-> (2,2)-> ...... And output the number of steps required. 3 Print dynamic Maze the path WalkPath (and) Dynamic display out of the labyrinth, every move to modify the display. Order to allow the user to see the display process, you must make the code deceleration do ab
Date
: 2025-12-16
Size
: 203kb
User
:
ld
[
Console
]
stl
DL : 0
C++ 标准程序库学习,stl容器示例的一些列代码-C++ standard library learning, stl container code sample some of the columns
Date
: 2025-12-16
Size
: 1.51mb
User
:
谢谢
[
Console
]
Cellular_Automate
DL : 0
A Cellular Automate Simulator which is implemented with the use of a STL-Container and with the use of an array. Good for educational purposes, to learn how to use the copy- & move semantics, as well as the R- and L-Values in C++.
Date
: 2025-12-16
Size
: 345kb
User
:
Rocky
[
Console
]
cSharp-stl-read-file
DL : 0
C#控制台读取STL文件,C#控制台读取STL文件-C# console reads the STL file, C# console reads the STL file
Date
: 2025-12-16
Size
: 48kb
User
:
ssti
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.