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

搜索资源列表

  1. invere

    0下载:
  2. 这是一个关于逆序表问题的程序,程序已经通过运行验收-This is a reversal on the issue of the scale of the procedures that have been running through acceptance
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1040086
    • 提供者:赵寰
  1. Landsoft_Src

    0下载:
  2. 数据结构链表的演示程序,实现了链表的逆序存放,供初学者学习-data structure Chain demonstration procedures, the reversal of the chain store for beginners learning
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:353041
    • 提供者:王卫国
  1. suanfa.rar

    0下载:
  2. 包括字符串反转, 链表反转, 判断两个数组中是否存在相同的数字, 判断链表是否存在环, 找出单向链表的中间结点, 如何判断一棵二叉树是否是平衡二叉树, strstr()的简单实现,,Including the string reversal, list reversal, to determine the existence of two different array of figures to determine the existence of ring list, find the mi
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-04-01
    • 文件大小:2913
    • 提供者:张文
  1. chuan

    0下载:
  2. 数据结构编程---串的知识,包括串的逆转,替换字串,判断标示符等---- String data structure programming knowledge, including the reversal of string, replacement string, and other indicators to judge. . .
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:26428
    • 提供者:阿正
  1. linkedlist

    0下载:
  2. linked list reversal program
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:655
    • 提供者:LeteeshRam
  1. c

    0下载:
  2. 利用string类与相关函数,实现任意字符串的反转。如:“abcdef”反转后为“fedcba”-Using string classes and related functions, to achieve an arbitrary string reversal. Such as: " abcdef" reversal after " fedcba"
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:13950
    • 提供者:王立
  1. b

    0下载:
  2. 定义一个类SortArray继承自MyArray,在该类中定义函数sort实现排序功能。 定义一个类ReArray继承自MyArray,在该类中定义函数reverse实现逆转功能。 定义一个类AverArray继承自MyArray,在该类中定义函数Aver实现求解整数的平均值。 定义NewArray类,同时继承了SortArray、ReArray和AverArray,使得NewArray类的对象同时具有排序、逆转和求平均值的功能。在继承的过程中声明为虚基类,体会虚基类在解决二义性问题
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:6202
    • 提供者:夏天
  1. inverse

    0下载:
  2. 输入一串序列,构造一个链表,并对该链表进行逆转。-Enter a sequence, construct a list, and the reversal of the list.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:751
    • 提供者:赵明敏
  1. Reversal-of-a-single-linked-list

    0下载:
  2. 单链表的实现(包括就地逆转单链表,表排序, 合并单链表、判断表是否有环)-Single linked list implementation (including the local reversal of single linked list, table sorting, merging a single linked list, determine whether the table ring)
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:2012
    • 提供者:萧瑜
  1. Rearrangement-Algorithm

    0下载:
  2. 基因组重构是改变基因在基因组中排列顺序的生物过程,可归结为三种主要操作:移位、反转和转位。重组距离即从一个基因组转化为另一个基因组所需的最少重组次数。双重基因组中每条染色体都是成对出现的。双重基因组重构问题,即要求计算一个与给定基因组移位距离最短的双重基因组。对于该问题,Nadia El-Mabrouk等人给出了一个多项式时间算法。本文利用Delphi集成开发环境,将该算法实现为双重基因组重构软件:(1)设计了优化的数据结构 (2)给出了详细的实现方法。(3)调试验证了算法的正确性。 本文首先介
  3. 所属分类:Data structs

    • 发布日期:2017-05-10
    • 文件大小:2141171
    • 提供者:廖世龙
  1. zifuchuannizhuan

    0下载:
  2. 可以实现一串的字符逆转,程序简单,简洁明了,易于读懂-Can to achieve the reversal of a string of characters, the program is simple, concise, easy to read
  3. 所属分类:Data structs

    • 发布日期:2017-05-10
    • 文件大小:2319508
    • 提供者:周明源
  1. First_Assignment

    0下载:
  2. 从左到右及从右到左遍历一个单链表是可能的,其方法是在从左向右遍历的过程中将连接方向逆转,如右图所示。在图中的指针p指向当前正在访问的结点,指针pr指向指针p所指结点的左侧的结点。此时,指针p所指结点左侧的所有结点的链接方向都已逆转。 (1) 编写一个算法,从任一给定的位置(pr, p)开始,将指针p右移k个结点。如果p移出链表,则将p置为0,并让pr停留在链表最右边的结点上。 (2) 编写一个算法,从任一给定的位置(pr, p)开始,将指针p左移k个结点。如果p移出链表,则将p置为0
  3. 所属分类:Data structs

    • 发布日期:2017-11-25
    • 文件大小:3720
    • 提供者:刘洋
  1. LL

    0下载:
  2. comprehensive linked list programs which has all basic functions like insert, print and linked list reversal for developing basic understanding of linked lists
  3. 所属分类:Data structs

    • 发布日期:2017-12-09
    • 文件大小:1111
    • 提供者:Prateek
  1. Link

    0下载:
  2. 本例提供了一个单链表操作,可实现单链表的就地逆转和排序-This example provides a single linked list operation, can achieve a single linked list situ reversal and sorting
  3. 所属分类:Data structs

    • 发布日期:2017-11-28
    • 文件大小:44042
    • 提供者:吴明峻
  1. LinkedListReverse

    0下载:
  2. 链表逆转的实现,面试的时候可能也会问实现逆转的思想-List reversal achieved when the interview may also be asked to achieve reversal of thinking
  3. 所属分类:Data structs

    • 发布日期:2017-12-02
    • 文件大小:12723
    • 提供者:钱昱
  1. magician

    1下载:
  2. 反转扑克牌问题,扑克牌排列在桌面上,每次反转一定区间的扑克牌,或者询问某一个区间内的扑克牌总共被反转了几次,使用线段树,可以处理大规模数据(扑克牌数量很多)(Reversal of playing cards: playing cards are arranged on the table. Each time you reverse a certain range of cards, or ask the playing cards in a certain range are reverse
  3. 所属分类:数据结构

    • 发布日期:2020-12-13
    • 文件大小:1024
    • 提供者:zzzzssssssss
搜珍网 www.dssz.com