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

搜索资源列表

  1. datastructnote

    0下载:
  2. 数据结构笔记,类c语言版本,我自觉很不错,大家可以-data structure, type c language version, I do feel quite well, and we can s
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:30486
    • 提供者:郑小光
  1. SimpalArray

    0下载:
  2. 这是一个简单的C++数组类程序,因为我学习过程中经常用到数组类,所以感到一定有很多人需要,特上传.-This is a simple array of categories C procedures, the learning process because I often use the array type, so I feel a lot of people will need special upload.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2373
    • 提供者:卢松
  1. LSshixian

    0下载:
  2. 顺序表类型的实现,数据结构清华大学严老师C语言第二版算法。-order to achieve the type of data structure Tsinghua University teachers strict version of the second C-language algorithm.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1293
    • 提供者:燕先生
  1. TreeProject

    0下载:
  2. C++数据结构树结构类定义及有关算法-C data structure tree structure type definition and the algorithm
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:52651
    • 提供者:李明
  1. 数据结构算法集---C++语言实现

    0下载:
  2. 常用的C++数据结构算法,包括队列、堆栈、链表...等.以模板类型式实现-C common data structure algorithms, including queue, stack, etc. List .... To achieve template-type
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:7370
    • 提供者:新康
  1. myString

    0下载:
  2. 自己编写的String类,可以用于代替<string>中的string类。支持==、!=、<、>等比较运算符,=复制运算符,有多种构造函数,动态分配内存,长度可变。容易转换成char*类型,而且使用深拷贝,指针使用得当。有常用的Index,Insert,Delete,Replace,SubString方法。而且源码中给出了String类的一个小应用。开发环境Visual C++ 6.0,测试程序为Console模式。-I have written the String c
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:15476
    • 提供者:billsedison
  1. C++

    0下载:
  2. 共有10个文件代码,均为数据结构类型,用C++开发环境完成的-A total of 10 documents code, are the type of data structure, using C++ Completed development environment
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:18747
    • 提供者:清清
  1. dashu

    0下载:
  2. 多数程序设计语言处理整数的能力是有限的,如C语言中,int 类型数据范围是-32768—32767。实际问题的处理过程中往往涉及大整数的运算,如RSA加密算法要求至少64bit的整数,设计算法实现大整数的加减运算(选做乘除运算)。-Most integer programming language to deal with a limited capacity, such as the C language, int scope of the type of data is-32768-3276
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:32771
    • 提供者:李鸿
  1. MyStackss

    0下载:
  2. 基于C++实现的数据结构中 顺序栈的类 基本功能 -Using C++ language in order to prepare the data structure stack type basic operation
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1089
    • 提供者:LG
  1. juzheng

    0下载:
  2. 数据结构中的链表类实现多项式的相加 用C++实现!-Linked list data structure in the sum of polynomial-type implementation with C++ implementation!
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:898157
    • 提供者:wp
  1. Maze

    0下载:
  2. 数据结构中迷宫问题的求解,迷宫问题.vcproj 这是使用应用程序向导生成的 VC++ 项目的主项目文件。 它包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 迷宫问题.cpp 这是主应用程序源文件。 StdAfx.h, StdAfx.cpp 这些文件用于生成名为 迷宫问题.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 -Data structure to solv
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:155443
    • 提供者:张艳彬
  1. libHX-3.0

    0下载:
  2. libHX is a C library and C++ bindings that provide data structures and functions for tasks common in scr ipting languages: autoresizing string manipulation, maps, deques, option parsing, type-checking casts, and more.
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:941666
    • 提供者:jmskhng
  1. collectioncaculator

    0下载:
  2. 运用顺序表的基本运算。(插入、删除) 1)集合的数据类型为一个结构体,其中包括一个数组用来存放集合元素,一个整型数据来统计集合元素的个数。生成两个集合A和B。 2)将集合中的元素按照从小到大排序。具体方法为:从第二个元素起(i),依次扫描每个元素前面的所有元素(j),若i<j,则将j插在i的前面,结束对i的排序,照这个方法,再依次对i后的元素进行排序。 3)求两集合的并:生成一个新集合C,将集合A的元素复制过来,对集合B的元素依次进行扫描,若没有该元素,则插入,若已存在,则扫描
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1145
    • 提供者:weiwei
  1. DSstringProcessingDemo

    0下载:
  2. 1.用堆分配存储表示实现Hstring 串类型的最小操作子集。 2.实现串抽象类型的其余基本操作(如联接、删除等),且不能使用c语言本身提供的串函数,必须自己构造新的函数实现串的基本操作。 3.本演示系统是一个命令解释程序,循环往复的处理用户输入的每一条命令,直至终止程序的命令为止。 4.参数的合法性必须严格检查,要严格按照命令的输入格式进行输入,否则程序可能无法正确执行指令。 -1. Heap allocated storage, said with a string t
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:125237
    • 提供者:figo yip
  1. Simplex

    0下载:
  2. C语言求解单纯型算法,里面包括文件的相关说明。-C type for solving simplex algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1865
    • 提供者:cheny
  1. xu

    0下载:
  2. 掌握线性表的结构特点。 掌握线性表的基本操作:初始化,插入,删除,查找,判空,求线性表长度等运算在顺序存储结构和链式存储结构上的实现。 通过本章实验帮助学生加深对C语言的使用(特别是函数的参数调用、指针类型的应用)。-Grasp the characteristics of the linear structure of the table. Master the basic operation of the linear form: initialization, insert, de
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:1411
    • 提供者:王微
  1. shunxubiao

    0下载:
  2. 顺序表基本操作, 1.学会定义线性表的顺序存储类型,实现C程序的基本结构,对线性表的一些基本操作和具体的函数定义。 2.掌握顺序表的基本操作,实现顺序表的插入、删除、查找以及求并集等运算。 3.掌握对多函数程序的输入、编辑、调试和运行过程。 -Basic operation of the order form, 1. Learn the definition of linear order of the table storage type, to achieve the bas
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1675
    • 提供者:xiaolu
  1. c-language-algorithm

    0下载:
  2. c语言算法,包括数据结构,基本算法,常用类型算法-c language algorithms, including data structures, basic algorithms, commonly used type of algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-11-13
    • 文件大小:45915790
    • 提供者:
  1. c

    0下载:
  2. 你可以输入任意字符串,程序会自动返回字符串的长度。-you can type any string, the program will print the lengh.
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:3643
    • 提供者:linlangmanmu
  1. c

    0下载:
  2. (1)float型和double型变量所能表示的最小正数分别是多少? (2)分析代码在时间足够的情况下是否能运行完,如果能给出n_f及n_d值。 (3)分别用float型和double型变量保存部分和Sk,递推计算(1)(见于实验七作业文件)式的值,并判定结果是否收敛?原因?理论分析及编程测试,给出收敛时得n值。 (4)设计求和算法,使用float型变量,使得收敛时n尽量大,部分和Sk尽量准确。 -(1) float and double variable can be repr
  3. 所属分类:Data structs

    • 发布日期:2017-11-27
    • 文件大小:713
    • 提供者:liqian
« 12 3 »
搜珍网 www.dssz.com