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

搜索资源列表

  1. 02

    0下载:
  2. 编写一个程序,将两个字符串连接起来(不用STRCAT函数)利用指针实现-Write a program that will link the two strings (not STRCAT function) the use of pointers
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:227096
    • 提供者:李世超
  1. A_LDU

    0下载:
  2. 程序实现将一个对称矩阵A分解成LDU 其中L为下三角矩阵 D为对角矩阵 U为上三角矩阵 该程序使用了二级指针,矩阵A的阶数可以由运行人员决定-Program implementation will be decomposed into a symmetric matrix A LDU where L is lower triangular matrix D a diagonal matrix U is upper triangular matrix of the program us
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:1020
    • 提供者:mwf
  1. multinonial

    0下载:
  2. 用带表头结点的单链表作为多项式的存储表示;要建立两个单链表;多项式相加就是要把一个单链表中的结点插入到另一个单链表中去,要注意插入、删除操作中指针的正确修改。-Node with a header with a single linked list as a storage, said polynomial to build two single-linked list polynomial sum is to take a single node in the linked list in
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:249321
    • 提供者:木易
  1. aitkenroot

    0下载:
  2. 埃特金求解C语言代码 //函数名:aitkenroot //功能描述:求出[a,b]区间内的非线性方程f(x)的一个实根 //输入参数:*x0(指向迭代初值和终值的指针) // f(迭代函数) // eps(精度要求) // max(最大迭代次数) //返回值:0(迭代失败),1(迭代成功)-Aitken Solution C language code// function name: aitkenroot// Function Descr iption: Fin
  3. 所属分类:Algorithm

    • 发布日期:2017-04-10
    • 文件大小:659
    • 提供者:穆欢
  1. Jusefo.c

    0下载:
  2. 约瑟夫问题(c语言) 有1至 N编号的N 个人按顺时针方向围坐一圈,每人持有一个密码(正整数),一开始以正整数m作为报数上限值,从第一个人开始顺时针方向自1开始顺序报数,报到m时停止报数,报m的人出列,将他的密码作为新的报数上限值,从他的顺时针方向上的下一个人开始重新报数,如此下去,直至所有的人全部出列为止,要求产生记录出列顺序的表。如N = 7,每个人的密码依次是:3,1,7,2,4,8,4,m的值为20,则出列顺序为6,1,4,7,2,3,5。所有人用一个循环单链表表示,表中每个结点代
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-11
    • 文件大小:1100
    • 提供者:taopen
  1. 5-5

    0下载:
  2. 带表头指针的单链表, 链表中存储的都是整型数据,递归算法求链表中的最大整数,求链表的结点个数, 求所有整数的平均值。 -class of List
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-05-10
    • 文件大小:2066688
    • 提供者:朱朱
  1. 3-3

    0下载:
  2. 两个带表头结点的非递减有序单链表的表头指针, 将这两个有序链表合并成一个非递增有序的单链表。要求结果链表仍使用原来两个链表的存储空间, 不另外占用其它的存储空间。-Header node with two non-decreasing ordered list of single-table pointer, the two ordered lists into one single list of non-incremental and orderly. The results are sti
  3. 所属分类:Data structs

    • 发布日期:2017-05-08
    • 文件大小:1816938
    • 提供者:朱朱
  1. cPP

    0下载:
  2. Fibonacci数列 为数组分配一动态内存并将首地址赋给指针变量p //求整数,长整数,双精度数的二次方根 //百钱问题-Fibonacci numbers as an array of dynamic memory allocation of a pointer variable and assign the address of the first p// find integer, long integer, double the number of secondary ro
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1156
    • 提供者:
  1. Array

    0下载:
  2. 一个区分数组大小的小程序,可以看出数组与指针的区别-Distinguish between the size of a small array of programs, you can see the difference between array and pointer. . . . . .
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:178905
    • 提供者:Victor
  1. Generic-function

    0下载:
  2. 泛型函数: 总结:使用标准模板库 (STL) C++标准库提供了更为安全,更为灵活的数据集处理方式。 STL的最主要的两个特点:数据结构和算法的分离,非面向对象本质。 访问对象是通过象指针一样的迭代器实现的;容器是象链表,矢量之类的数据结构,并按模板方式提供; 算法是函数模板,用于操作容器中的数据。由于STL以模板为基础,所以能用于任何数据类型和结构。-Generic function: Summary: Using the Standard Template Library
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:756940
    • 提供者:fdsf
  1. bbb

    0下载:
  2. 算法都是一致,但顺序不一样,这直接点明了链表操作的核心——顺序,链表的算法主要难在顺序上。 逆序操作中,要将一个指针指向前一个节点,中间必然断开,这就需要两个指针指向断开处的一前一后。 上面两个程序都是这样,不同在于指针移动的位置。-i no englisk
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:709
    • 提供者:肌肤上
  1. ch6-7

    0下载:
  2. 编写通用的C++函数实现用二分法求方程解的问题,指针数组实现排序,strcmp函数编写,统计大写字母、小写字母、数字、空格与其他字符-Preparation of common C++ functions for equations with dichotomous find the problem sorted pointer array implementation, strcmp function, write, statistics uppercase letters, lowercas
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-28
    • 文件大小:2047
    • 提供者:周娜
  1. link

    0下载:
  2. 单链表是一种顺序存取的结构,为找第 i 个数据元素,必须先找到第 i-1 个数据元素。因此,查找第 i 个数据元素的基本操作为:移动指针,比较 j 和 i -Linked list structure is a sequential access for the data elements to find the first i must first find the first i-1 data elements. Therefore, the first i find the basic o
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:4370
    • 提供者:zn
  1. hoffman

    0下载:
  2. 该程序的主体分为建树、编码、解码三个大块。 建树又可分为3个子过程:频率统计、创建叶子结点单链表、叶子结点连接成树。 单链表的创建过程:对存在的每个字符建立叶子结点,并按权值递增有序插入单链表,再将字符的叶子指针(其作用将在后文提到)指向该结点。 -The program is divided into the main achievements, encoding, decoding three chunks. Contribution can be divided into th
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:386897
    • 提供者:张文琪
  1. sort2

    0下载:
  2. 一个基于VC的数组排序算法源码实例,程序中使用了函数指针数组,一共包含四种排序方法:泡沫排序法(bubble)、插入排序法(insertion)、快速排序法(quick)和选择排序法(selection)。在头文件中还使用了模板技术,以便可以同时实现几种类型的排序算法。 -A sorting algorithm based on an array of source code VC instance, the program uses the function pointer array,
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:24866
    • 提供者:madud00087
  1. daima

    0下载:
  2. 编写一个函数,输入n为偶数时,调用函数求1/2+1/4+...+1/n,当输入n为奇数时,调用函数    1/1+1/3+...+1/n(利用指针函数) -Write a function, the input n is even, the call function evaluation 1/2+1/4+...+ 1/n, when the input n is odd, call the function 1/1+1/3+...+ 1/n (using the pointer fun
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-13
    • 文件大小:2376
    • 提供者:wf
  1. list

    0下载:
  2. 在链表中套用链表,在里面的链表中用二维指针实现二维矩阵-Apply list in the list, in which the linked list pointers using two-dimensional matrix of two-dimensional
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1559
    • 提供者:
  1. Doubly-linked-list

    0下载:
  2. 双向链表,每个数据结点中都有两个指针,分别指向直接后继和直接前驱。可以很方便地访问它的前驱结点和后继结点-Doubly linked list, each data nodes have two pointers that point to a direct follow-up and direct precursors. Can easily access its predecessor node and successor node
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:160024
    • 提供者:zhb
  1. SearchBST

    0下载:
  2. 二叉树排序查找,在根指针T所指的二叉排序树中查找数据e,查找成功时,返回1值,并用指针p返回结点地址,不成功时,用P指向查找路径中的最后一个结点并返回0值,指针f指向T的双亲结点,初始调用时其值为NU-T refers to the pointer in the root binary sort tree to find data e, find success, returns 1 value, and return with a pointer p node address, unsucce
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:166582
    • 提供者:jassy
  1. ShellSort

    0下载:
  2. 希尔排序,使用希尔排序的方法对指针L所指向的结构体中的成员 — 数组Key 中的数据进行排序。成功时,返回1,否则返回-Hill sorting, using the method of sorting Hill pointer L points to the members of the structure- the array to sort the data in the Key. Success, returns 1, otherwise
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:151748
    • 提供者:jassy
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 21 »
搜珍网 www.dssz.com