联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 数据结构(132) 
按平台查找All C/C++(132) 

[数据结构] Pa1-4

Duck 公司在仓库安装了红外报警装置,如图所示,所有红外线互不相交。n 个发射器和 n 个接收器将平面分成 n + 1 个区域,从左到右分别记作 0、1、…、n。现在技术人员正在进行调试,对于每个点,需要快速知道它处于哪个区域。若正好处于红外线上,则视为处于右边的区域。
Duck company has installed infrared alarm device in the warehouse, as shown in the figure, all infrared rays do not intersect each other. N transmitters and N receivers divide the plane into N + 1 regions, and record them as 0, 1, and n. Now technicians are debugging, and for each point, you need to quickly know which area it is in. If it is on the infrared, it is considered to be in the right area. (2020-05-14, C/C++, 1KB, 下载1次)

http://www.pudn.com/Download/item/id/1589401917568240.html

[数据结构] Huffman

利用哈夫曼编码进行通信可以大大提高信道利用率,试为这样的信息收发站写一个哈夫曼的译编码器。
Using Huffman coding to communicate can greatly improve the channel utilization. Try to write a Huffman translation encoder for such an information transceiver. (2020-03-14, C/C++, 1KB, 下载1次)

http://www.pudn.com/Download/item/id/1584161242535382.html

[数据结构] 特殊矩阵计算器

创建两个特殊矩阵 A 和 B,计算 A+B、A-B、A*B、B*A、A(或 B)的逆、A(或 B)的 转置、A(或 B)的行列式等
Create two special matrices A and B, and calculate the inverse of a + B, A-B, a * B, b * a, a (or b), a (or b) Transpose, determinant of a (or b), etc (2019-12-16, C/C++, 577KB, 下载2次)

http://www.pudn.com/Download/item/id/1576464654398961.html

[数据结构] Practice_of_Data_Structure_and_Algorithm

数据结构与算法实习(大二上): 大作业一:电梯模拟器(单人完成) 大作业二:自动消解连连看(单人完成) 大作业三:miniSQL(组队完成) 编译环境:VC6 运行环境:Windows
Data structure and algorithm practice (sophomore year): Big job one: Elevator simulator (completed by one person) Big assignment 2: automatic digestion and continuous watching (completed by single person) Big assignment 3: miniSql (team up) Compiling environment: vc6 Running environment: Windows (2019-11-22, C/C++, 29KB, 下载1次)

http://www.pudn.com/Download/item/id/1574409951119442.html

[数据结构] 链表1

链表用法,通过指针完成对链表前端和后端的索引,同时包含相关用法实例,以打分器为例进行了详细介绍
Using the pointer, the index of the front end and the back end of the linked list is completed by the pointer, and the relevant usage examples are included, and the typing device is introduced in detail as an example. (2017-12-18, C/C++, 2098KB, 下载1次)

http://www.pudn.com/Download/item/id/1513565154474488.html

[数据结构] hufman

哈夫曼编/译码器:建立哈夫曼树,通过哈夫曼树来建立哈弗曼代码
Haverman/decoder: set up the hafman tree and build the haverman code through the haffman tree (2017-06-14, C/C++, 193KB, 下载1次)

http://www.pudn.com/Download/item/id/1497405859289820.html

[数据结构] Edit

简单行编辑器:简单行编辑器要求实现行插入和行删除,以一行为操作目标,这里使用了双链表,一行为一个Node,整个双链表链表为一篇文档的形式来存储。算法使用了KMP算法来实现查找,且支持"*"、"?"等通配符。
Simple line editor: Simple line editor insert rows and rows required to achieve removed to a behavioral operational objectives, where the use of the double-linked list, an act a Node, the entire doubly linked list is stored in the form of a document. Algorithm uses the KMP algorithm to achieve the look, and support the " *" , " ?" And wildcards. (2013-10-18, C/C++, 5KB, 下载6次)

http://www.pudn.com/Download/item/id/2377321.html

[数据结构] goods-purchasing

通过结合栈 链表 队列等几中数据结构并利用它们各自的特性来模拟实现一个简单的商店的商品管理器
we use the stack ,the queue and the linklist and combine their characteristics to make a goods purchasing manager (2013-10-12, C/C++, 15095KB, 下载2次)

http://www.pudn.com/Download/item/id/2372921.html

[数据结构] FIFO-algorithm

先入先出队列,这是一种传统的按序执行方法,先进入的指令先完成并引退,跟着才执行第二条指令。是一种先进先出的数据缓存器,他与普通存储器的区别是没有外部读写地址线,这样使用起来非常简单,但缺点就是只能顺序写入数据,顺序的读出数据,其数据地址由内部读写指针自动加1完成,不能像普通存储器那样可以由地址线决定读取或写入某个指定的地址
First-in, first-out queue, which is a traditional sequential execution method, first enter the command to complete and retire, followed by the second instruction before it is implemented. Is a FIFO data buffer, and he is the difference between ordinary no external memory write address lines, so it is very simple, but the disadvantage is that the order can only write data, read data sequentially, the data address by the internal write pointer is automatically incremented to complete, not like ordinary memory address lines that can be read from or written to a decision to the address specified (2013-06-07, C/C++, 1KB, 下载2次)

http://www.pudn.com/Download/item/id/2272608.html

[数据结构] redisbook

本书的目标是以简明易懂的方式讲解 Redis 的内部运行机制,通过阅读本书,你可以了解到 Redis 从数据结构到服务器构造在内的几乎所有知识.
Book' s goal is simple and clear way to explain the inner workings of Redis, by reading this book, you can learn Redis constructed from the data structure to the server, including almost all the knowledge. (2013-06-06, C/C++, 2247KB, 下载21次)

http://www.pudn.com/Download/item/id/2271546.html

[数据结构] DanceingLinksSudu

使用Dancing Links的思想的数独解算器,采用十字双向链表的数据结构,解算速度为常规算法的20倍以上
The idea of using Dancing Links Sudoku solver, using the cross-way linked list data structure, solver speed is 20 times more than conventional algorithms (2012-01-10, C/C++, 3KB, 下载4次)

http://www.pudn.com/Download/item/id/1754374.html

[数据结构] CQueue

设计一个使用队头指针和计数器无队尾指针的顺序循环队列,并编写一个主函数进行测试。
Design a counter using the head of the queue pointer and tail pointer of the order of non-circular queue, and write a main function for testing. (2010-12-09, C/C++, 1KB, 下载1次)

http://www.pudn.com/Download/item/id/1374602.html

[数据结构] stl-code

stl标准库是C++ 的一个类库,包括容器,算法,迭代器。提供许多基本的算法和数据结构
The Standard Template Library, or STL, is a C++ library of container classes, algorithms, and iterators it provides many of the basic algorithms and data structures of computer science. (2010-08-24, C/C++, 210KB, 下载26次)

http://www.pudn.com/Download/item/id/1278033.html

[数据结构] 4

学习数据结构的难点之处,就在于实现很抽象不易于理解。而本压缩包包含的数据结构演示器刚好能帮助你解决这一难题。该演示器功能完善,你既可以逐步演示,还可以不间断的演示,能让你实时的观察到这些过程,这无疑会对你学习数据结构产生很大的帮助
Learning difficulties between the data structure, it is not easy to achieve very abstract understanding. The package contains the compressed data structure presenter just to help you solve this problem. The featured presenter, you can either step by step demonstration, the demonstration can also be continuous, real-time observation allows you to these processes, which undoubtedly will generate data structures you learn a great help (2010-07-15, C/C++, 3684KB, 下载3次)

http://www.pudn.com/Download/item/id/1242662.html

[数据结构] binary_hash

查找表源码,其中包含两个独立的程序: (1)哈希(Hash)表操作测试程序 (2)二分查找法测试程序 用C语言编译器编译后可以直接运行,功能包括查找、插入、删除等操作。
Source code look-up table, which contains two separate procedures: (1) hash (Hash) table testing procedures (2) binary search method to test the procedure using C language compiler to compile directly after the operation, features include search, insert, delete operation. (2009-08-21, C/C++, 4KB, 下载23次)

http://www.pudn.com/Download/item/id/885084.html

[数据结构] yemianzhihuan

在段式虚拟存储器中,虚拟空间中能容纳的程序段数要比主存空间中能存放的相同长度的程序段数要多得多。因此,必然会出现当主存中所有页面都被占用,或者所有主存空间都被占用,而又要从磁盘存储器重调入新页(或新段)的情况。这时,必须从主存储器中淘汰一个不常用的页面(或程序段),以腾出主存空间来存放新调入的页面(或程序段),那么,按照什么样的规则替换主存储器中的页面(或程序段)呢?这就是页面替换算法要解决的问题。
Piece of virtual memory in the virtual space of the program segment can accommodate a few more main memory space to store the same program segment length of a few to many more. Therefore, when bound to all the pages in main memory are occupied, or all of main memory space occupied, and re-transferred from the disk storage a new page (or above) the situation. At this time, must be eliminated from the main memory in a common page (or procedures) to free up main memory space to store the new page transferred (or program segment), then what kind of rules in accordance with the replacement of the main memory page (or program segment) it? This is the page replacement algorithm to solve the problem. (2009-06-17, C/C++, 240KB, 下载4次)

http://www.pudn.com/Download/item/id/811070.html

[数据结构] jisuanqi

一元稀疏多项式计算器的基本功能是: (1)输入并建立多项式; (2)输出多项式,输出形式为整数序列:n,c1,e1,c2,e2,….,cn,en, 其中n是多项式的项数,ci和ei分别是第I项的系数和指数,序列按照指数降序排列; (3)多项式a和b相加,建立多项式a+b (4)多项式a和b相减,建立多项式a-b.
Sparse Polynomial calculator a dollar a basic function is to: (1) input and the establishment of polynomials (2) the output polynomial, the output sequence of the form of an integer: n, c1, e1, c2, e2, ...., Cn , en, in which n is the number of polynomial, ci and ei, respectively, is the first I of the coefficient and index, sequence in accordance with the index in descending order (3) polynomials a and b are added together to establish polynomial A2B ! b (4) polynomials a and b-phase reduction, the establishment of polynomial ab. (2008-09-19, C/C++, 11KB, 下载14次)

http://www.pudn.com/Download/item/id/549224.html

[数据结构] manytrees

常用树数据结构集合,包括二叉树、二叉查找树、AA树、红黑树、伸展树的一整套实现,自带包装器、异常处理类,方便使用
common pool tree data structure, including the binary tree, binary search tree, AA tree, a red, black tree extend to achieve a set of trees, bringing their wrapper, abnormal class, user-friendly (2007-06-03, C/C++, 13KB, 下载112次)

http://www.pudn.com/Download/item/id/291962.html

[数据结构] My_Class

这是一些C++中常用的数据结构,由于是太久以前,代码风格有些乱,不过用VC编译器同一格式化后就OK了
C which is a commonly used data structures, because it was too long ago, some arbitrary code style, But with VC compiler the same format after the OK (2006-05-26, C/C++, 939KB, 下载2次)

http://www.pudn.com/Download/item/id/187907.html

[数据结构] Hfmtree编译码器

利用哈夫曼编码进行通信可以大大提高通信信道利用率,缩短信息传输时间,降低传输成本。这要求在发送端通过一个编码系统将传输数据预先编码;在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双工传输信息的信道),每端都需要一个完整的编/译码系统。为这样的信息收发站设计的一个哈夫曼编/译码系统。
use Huffman coding communication can greatly enhance communication channel utilization, reduced transmission time, and lower transmission costs. This requires the transmitter through a coding system will transmit data in advance coding; The receiving end of the data came decoding (recovery). For dual-channel (that is, information can duplex transmission channel), each side needs a complete encoding/decoding system. For this information hubs designed a Huffman encoding/decoding system. (2005-05-24, C/C++, 2KB, 下载47次)

http://www.pudn.com/Download/item/id/1116934086486231.html
总计:132