CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - c/s

搜索资源列表

  1. C语言实现的皇后问题

    0下载:
  2. n皇后问题,可以显示所有的合适路径,典型的回溯算法-n Queen's, will show you all the appropriate path, the typical backtracking algorithm
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:9870
    • 提供者:吴限负
  1. 排序算法、字典和B-树的C++语言实现

    0下载:
  2. 排序算法、字典和B-树的C++语言实现 代码内容 包括以下算法: qui.c sort: quicksort qsort.c sort: qsort ins.c sort: insert sort shl.c sort: shell sort has.c dictionary: hash tables bin.c dictionary: binary tree rbt.c dictionary: red-black trees skl.c dic
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:24943
    • 提供者:罗鹏魁
  1. 用c实现的约瑟夫环问题

    0下载:
  2. 约瑟夫问题有原始的约瑟夫和发展了的约瑟夫两种。 原始的约瑟夫的描述: 古代某法官要判决N个犯人的死刑,他有一条荒唐的法律,将犯人站成一个圆圈,从第S个人开始数起,每数到第D个犯人,就拉出来处决,然后再数D个,数到的人再处决———直到剩下的最后一个可赦免。 发展的约瑟夫的描述: 古代某法官要判决N个犯人的死刑,但这N个人每人持有一个密码,他有一条荒唐的法律,将犯人站成一个圆圈,法官先给出一个密码M,从第S个人开始数起,每数到第M个犯人,就拉出来处决,再根据这个人所持有的密码F,然后再数F个,数到的
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2373
    • 提供者:曾德胜
  1. C语言编程例子

    0下载:
  2. 这是初学者的宝典,以以往的编程白例是不同的,有较大的区别,里面有100多个编程实例-This is a beginner's book for the past programming white cases are different, the difference is larger, there are more than 100 examples of programming
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:80142
    • 提供者:撒嗯
  1. yanweimin.rar

    0下载:
  2. 严蔚敏《数据结构(c语言版)习题集》 参考答案,-Yan Weimin`s refered answers
  3. 所属分类:Data structs

    • 发布日期:2017-11-08
    • 文件大小:49074
    • 提供者:小康
  1. huffman

    0下载:
  2. 利用二叉树结构实现赫夫曼编/解码器。 1、初始化(Init):能够对输入的任意长度的字符串s进行统计,统计每个字符的频度,并建立赫夫曼树 2、建立编码表(CreateTable):利用已经建好的赫夫曼树进行编码,并将每个字符的编码输出。 3、编码(Encoding):根据编码表对输入的字符串进行编码,并将编码后的字符串输出。 4、译码(Decoding):利用已经建好的赫夫曼树对编码后的字符串进行译码,并输出译码结果。 5、打印(Print):以直观的方式打印赫夫曼树。6、计
  3. 所属分类:Data structs

    • 发布日期:2016-01-26
    • 文件大小:1133568
    • 提供者:林佳
  1. NumericalAlgorithm(C++)

    0下载:
  2. 何光渝所著《计算机常用数值算法与程序(C++版)》的随书源代码。 是想学习C++科学计算的人士的必看代码。-Guang-Yu-book computer numerical algorithm and procedures used (C++ Version) with the book s source code. Want to learn C++ Scientific computing people who see code.
  3. 所属分类:Data structs

    • 发布日期:2017-06-20
    • 文件大小:445953
    • 提供者:周昕
  1. c++yinhangjia

    0下载:
  2. 操作系统中的银行家算法源码,用c++写的关于避免死锁的算法。-Banker s algorithm in the operating system source code, using c++ Write on the algorithm to avoid deadlock.
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:106805
    • 提供者:tiantian
  1. binSearchTree1

    0下载:
  2. 二叉搜索树的基本操作,可查找插入删除建立的二叉搜索树以广义表给出-Binary search tree s basic operation, can be inserted to find the deletion of the establishment of the binary search tree to table gives a broad sense
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:8941
    • 提供者:王祥
  1. c

    0下载:
  2. 爱因斯坦的思考题 二叉树算法集 分解质因数新解 石子归并问题等有趣的C程序-Consider Einstein' s title tree decomposition algorithm sets new quality factor solution stones merge interesting questions, such as C procedures
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:21550
    • 提供者:刘亚东
  1. Miller-Rabin-c

    0下载:
  2. 求质数的算法之Miller-Rabin费马小定理-Prime number for the Miller-Rabin algorithm of Fermat' s Little Theorem
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:833
    • 提供者:li shu
  1. nhuanghou-c

    0下载:
  2. 皇后问题,解法也是多种,目前主要有回溯,递推两种方法-Queen' s issue, is also a wide range of solutions, the current major retrospective, recursive methods
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1382
    • 提供者:li shu
  1. exp

    0下载:
  2. 本人自己写的一个班级成绩管理系统,内含详细丰富的设计文档和分析,供学习c/c++和数据结构的新手学习,大有裨益。-I wrote it myself a ticket sales system. The use of C/S mode, multi-threaded, multi-network marketing, the basic functions of each network as such as selling a ticket and the refund showed that
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:7645
    • 提供者:prolove
  1. sort

    0下载:
  2. 二路归并算法的代码,用来排序,文件后缀名是c-a program to sort files under visusl C++ s environment
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:8866
    • 提供者:zhou
  1. List

    0下载:
  2. 一个可以支持各种类型数据插入,检索,替换,查找的双向链表,已调式,比较好用。-It s a program which supports different kinds of insertion,traverse,replace and find, It s a list,and it s double linked. Already compled,useful.
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:1206
    • 提供者:Judyjava
  1. shuj

    0下载:
  2. 数据结构习题集答案 c语言版本 作者是严蔚敏 吴伟民-Data Structure Problem Set is the answer to c language version of WU Weimin Yan Wei Min
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:112531
    • 提供者:
  1. c

    0下载:
  2. 配套书籍的源代码,将数据结构清华那版书上的伪代码翻译-Complete book' s source code, the data structure that version of the book Tsinghua pseudo-code translation
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:384117
    • 提供者:huyaxu
  1. Jones.and.Bartlett.Publishers.C.plus.plus.Plus.Dat

    0下载:
  2. 很完善的C++数据结构参考手册,是你桌旁不可或缺的资料!-It s very useful!
  3. 所属分类:Data structs

    • 发布日期:2017-06-02
    • 文件大小:14872892
    • 提供者:zhuimengzh
  1. Data-Structure(in-C)

    0下载:
  2. 数据结构(C语言描述)方面经典书籍,通俗易懂且代码非常详细,可直接运行-classic data structure book(in C),it s very easy to understand,it also contains full codes which can execute on the computer directly.
  3. 所属分类:Data structs

    • 发布日期:2017-06-17
    • 文件大小:27276082
    • 提供者:123
  1. C

    0下载:
  2. C/C++中结构体(struct)知识强化学习总结资料,有关形成链表结构的知识-C/C++ s struct define methods,it is knowlege about the link table
  3. 所属分类:Data structs

    • 发布日期:2017-05-12
    • 文件大小:2693794
    • 提供者:djh
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com