搜索资源列表
boost_source_code
- 正则表达式,可以与POSIX API和Perl语言处理正则表达式的功能相媲美,而且还能支持各种字符类型(如char、wchar_t,甚至还可以是自定义字符类型); 多线程,想了很久的跨平台多线程库了; 数据结构“图”,再加上即将加入标准的hash_set、hash_map、hash_multiset、hash_multimap等等(事实上不少STL实作,如SGI STL,已经支持以上数据结构),C++对数据结构的支持已近完备; python,没错,对Python语言的支持;
coust
- 随机序列模拟的彩票摇奖系统。开发环境的Visual C++。采用链表的数据结构。-random sequence simulated lottery lottery system. Development environment for Visual C + +. Listless using the data structure.
tubianli
- 图的遍历的演示(c 语言 数据结构课程设计题) /*定义图*/ typedef struct{ int V[M] int R[M][M] int vexnum }Graph /*创建图*/ void creatgraph(Graph *g,int n) { int i,j,r1,r2 g->vexnum=n /*顶点用i表示*/ for(i=1 i<=n i++) { g->V[i]=
Ds
- 数据结构的C源码(所有结构的高质量源码)
tenwordsconnection
- 数据结构课程:十字链表的VC++的C语言实现
linklistnode(c)
- 此系统主要是演示数据结构中的单链表,仅供学习,交流之用,通过学习可以看到局部变量,全局变量,数据结构,算法的有机结合.在win-tc下可直接运行,在某些Troubc c下需要将malloc.h改为alloc.h
linklistnode(c++)
- 此系统比较简单,用c++类机制描述了数据结构中的线形链表,供正在学习C++的同学参考,避免对c++中对象的创建,动态分配内存的错误理解.这需要一段时间专心的理解,反复推敲,看不到很好的效果.注意不要照搬照用,一定要理解才能驾驭它.即是编写应用程序.
c-algorithms1.0.0.tar
- 常用的数据结构和算法函数库,比如集合、列表、树、队列、hash等。
TC
- C语言常用数据结构-C语言常用数据结构
BC
- C++ 实现数据结构-C++ 实现数据结构
four-queen-c
- 东北大学 人工智能 四皇后问题 C语言 数据结构 实验报告-Northeastern University Artificial Intelligence queens problem C language data structure of experimental reports
Dijkstra
- 数据结构C语言版 Dijkstra算法,能显示具体路径-Data structure C language version of Dijkstra' s algorithm
A-B
- 数据结构C语言版 链表A-B具体实现,简单易理解-Linked list data structure C language version of AB concrete realization, simple and easy to understand
shu
- 数据结构C语言版 二叉树的三种遍历 简单易实现-C-language version of the binary tree data structure traversal is simple and easy to achieve three
c-Senior-courseware
- 这是一个c语言高级课件,共十章,包括编译预处理、c语言编程实践、数据结构与算法概述、链表、c语言在嵌入式中的应用、以及一些常用的排序算法等等。另外附上嵌入式c程序的编译与调试及单独对指针和数组的讲解。-This is a senior c language courseware, chapter ten, including compiling pretreatment, c language programming practice, summary of data structure and
Yinhangyewumoni
- 银行业务活动模拟(数据结构C++),还是很好滴啊!!一些基本功能-Banking activities analog (data structure C++), or a good drop ah! ! Some basic features
DS
- 数据结构C/C++重点程序代码:哈弗曼编码、表达式求值、二叉树应用、链表排序等-Data structure( C/C++ program code):Huffman coding, expression uation, the application of binary tree and chain table sorting, etc
first_item
- 有数据表构成的通讯录,包括其中内容的增删改查等(An address book consisting of data tables)
addressbook
- 一个用链表这种数据结构写的简单的通讯录代码,希望大家对链表有进一步的了解。(Using a list of such data structure to write a simple address book code, I hope you have a further understanding of the list.)
C++并发编程实战源码
- 《C++并发编程实战》是一本基于C++11新标准的并发和多线程编程深度指南。内容包括从std::thread、std::mutex、std::future和std::async等基础类的使用,到内存模型和原子操作、基于锁和无锁数据结构的构建,再扩展到并行算法、线程管理,最后还介绍了多线程代码的测试工作。