登录
首页 » 数据结构 » 数据结构常用算法C++,快快下载,望 能给大家帮助

数据结构常用算法C++,快快下载,望 能给大家帮助

于 2022-02-13 发布 文件大小:201.64 kB
0 153
下载积分: 2 下载次数: 1

代码说明:

数据结构常用算法C++,快快下载,望 能给大家帮助-data structure used algorithm C, quickly download, we can look to help

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 第三章中栈和队列的源程序,实现了全部算法
    数据结构第三章中栈和队列的源程序,实现了全部算法-this is a code of data structure
    2023-01-24 17:00:06下载
    积分:1
  • 回溯法的模板,关键是回溯的过程,以及在深搜过程中的方向问题...
    回溯法的模板,关键是回溯的过程,以及在深搜过程中的方向问题-Backtracking template, the key is back process, as well as in the course of the deep question of the direction search
    2022-06-15 15:31:48下载
    积分:1
  • 求解网络中的最短路径。假设某个计算机网络有n个站点,依次编号为1,2,…,n;有的站点之间有直接的线路连接(即这两个站点之间没有其它站点),有的站点之间没有直接...
    求解网络中的最短路径。假设某个计算机网络有n个站点,依次编号为1,2,…,n;有的站点之间有直接的线路连接(即这两个站点之间没有其它站点),有的站点之间没有直接的线路连接。如果用三元组(i,j,f)来表示该网络中的站点I和站点j之间有直接的线路连接且它们之间的距离为f 当已知该网络各站点之间的直接连接情况由m个三元组(i1,j1,f1),(i2,j2,f2),…,(im,jm,fm)确定时,要求计算出对于网络中任意一个站点g(1≤g≤n)到其余各站点的最短距离。-the shortest path. Assuming a computer network n site, followed by No. 1, 2, ..., n; Some sites have direct connections (that is, between two sites are no other site), and some sites have no direct connections. If three yuan (i, j, f) to the network said the site j site and I have direct connections between them but the distance of f the network known as the site of the direct link between the situation by 3 m (i1, j1, f1), ( i2, j2, f2), ..., (im, jm, fm) to determine, calculate requirements for a network site arbitrary g (1 g n) of the rest of the site is the shortest distance.
    2023-05-31 21:45:02下载
    积分:1
  • 一本很好的库文档, PostgreSQL 8.0.0 中文文档。
    一本很好的数据库文档, PostgreSQL 8.0.0 中文文档。-PostgreSQL
    2022-01-22 14:02:47下载
    积分:1
  • 假设一个文件中出现了8种符号S0,SQ,S2,S3,S4,S5,S6,S7,那么每种符号要编码,至少需要3bit。假设编码成000,001, 010,011,1...
    假设一个文件中出现了8种符号S0,SQ,S2,S3,S4,S5,S6,S7,那么每种符号要编码,至少需要3bit。假设编码成000,001, 010,011,100,101,110,111。那么符号序列S0S1S7S0S1S6S2S2S3S4S5S0S0S1编码后变成 000001111000001110010010011100101000000001,共用了42bit。我们发现S0,S1,S2这3个符号出现的频率比较大,其它符号出现的频率比较小,我们采用这样的编码方案:S0到S7的码辽分别01,11,101,0000,0001,0010,0011, 100,那么上述符号序列变成011110001110011101101000000010010010111,共用了39bit。尽管有些码字如 S3,S4,S5,S6变长了(由3位变成4位),但使用频繁的几个码字如S0,S1变短了,所以实现了压缩。对于上述的编码可能导致解码出现非单值性:比如说,如果S0的码字为01,S2的码字为011,那么当序列中出现011时,你不知道是S0的码字后面跟了个1,还是完整的一个S2的码字。因此,编码必须保证较短的编码决不能是较长编码的前缀。符合这种要求的编码称之为前缀编码。要构造符合这样的二进制编码体系,可以通过二叉树来实现。-Suppose a file appears in eight kinds of symbols S0, SQ, S2, S3, S4, S5, S6, S7, then each symbol to be encoded, at least 3bit. Suppose encoding 000,001, 010,011,100,101,110,111. Then the symbolic sequence S0S1S7S0S1S6S2S2S3S4S5S0S0S1 encoded into 000001111000001110010010011100101000000001, sharing a 42bit. We found that S0, S1, S2 these three symbols the frequency of relatively large, the other symbols the frequency is relatively smal
    2022-04-27 21:17:34下载
    积分:1
  • A.STEVENS database by c
    A.STEVENS 用C语言开发的数据库 -A.STEVENS database by c
    2022-01-26 18:27:18下载
    积分:1
  • Computes estimates for the number of fores ts of a graph. input as a 0
    Computes estimates for the number of forests of a graph, input as a 0-1 incidence matrix. Notes: Compile in C++, "g++ -o span_forest span_forest.c". The program does not demand that the matrix is symmetric with 0 diagonal, but uses only the upper triangular part. -Computes estimates for the number of fores ts of a graph. input as a 0-1 incidence matrix. Notes : Compile in C, "g-o span_forest span_forest.c." The program does not demand that the matrix is symmetric wit h 0 diagonal. but uses only the upper triangular part.
    2022-02-05 15:36:49下载
    积分:1
  • The use of VB to read and write through the 24C02 single
    利用VB通过串口控制单片机读写24C02源代码程序-The use of VB to read and write through the 24C02 single-chip serial port control program source code
    2022-02-16 01:11:50下载
    积分:1
  • n个的全排列的非递归算法,cpp文件可编译运行
    n个数的全排列的非递归算法,cpp文件可编译运行-n the number of full-order non-recursive algorithm, cpp files can be compiled to run
    2022-04-27 20:01:08下载
    积分:1
  • Area code conversion software, you can check area code of Chinese characters mai...
    区位码转换软件,可以查询汉字的区位码,主要用于学生考试系统-Area code conversion software, you can check area code of Chinese characters mainly used for student examination system
    2022-02-19 23:44:33下载
    积分:1
  • 696518资源总数
  • 106227会员总数
  • 11今日下载