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

搜索资源列表

  1. jiaojibingji

    0下载:
  2. 使用顺序表实现的交集并集问题,其中使用了类模板和简单的线性表存储结构。-order to achieve the intersection of sets, which use a class template and a simple linear table storage structure.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:16.87kb
    • 提供者:muyu
  1. duichengcha

    0下载:
  2. 求两个集合的对称差 ,用户给出输入 程序打印结果,是通过分别求并集,交集而得-for two pools symmetric difference, and give users the importation procedures Print results were seeking through and sets derived intersection
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.04kb
    • 提供者:姜冰
  1. JIHE

    0下载:
  2. 数据结构的 用有序表实现集合的基本功能~交集 并集 插入 删除~界面美观~可操作性强-data structure using the table to achieve an orderly set of basic function-set intersection and inserted delete ~ ~ operable aesthetic interface strong
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-15
    • 文件大小:1.44kb
    • 提供者:易凌云
  1. subsets

    0下载:
  2. 该程序实现给定两个整数集合的并集和交集,并且输出。
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:10.1kb
    • 提供者:王海涛
  1. linlist

    1下载:
  2. 创建顺序表: 输出顺序表:顺序输出各个元素; 插入顺序表:在指定位置处插入元素; 删除顺序表:根据删除指定位置的元素; 逆转顺序表:按逆序倒置所有的元素; 排序顺序表:按照升序排列所有元素; 求交集:求两个顺序表的交集 求并集:求两个顺序表的并集; 销毁顺序表。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:28.97kb
    • 提供者:姜华
  1. 集合交集c++

    0下载:
  2. 有关集合的运算-the pool operator!
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:1.36kb
    • 提供者:小小
  1. IntegerSet

    0下载:
  2. 给出集合类的定义,可模拟实现集合的交集,并集运算,并可以插入,删除元素-is set class definition can be simulated to achieve the intersection and set computing, and can be inserted, deleted elements
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:11.47kb
    • 提供者:董飞
  1. ADT

    0下载:
  2. 实现ADT,可以实现两个二叉树的几种逻辑关系来显示它们之间的联系.如:求两个二叉树是否是等价的.它们的交集并集是怎样的.等等.这样这些都是ADT要实现的方法.-achieve ADT, can achieve two binary tree several logical relationship to show the linkages between them. Such as : whether the binary tree for two are synonymous. The int
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:4.02kb
    • 提供者:全子
  1. 用链表求两集合的交集

    0下载:
  2. 已知递增有序链表A、B分别表示一个集合,设计算法以实现C=A∩B,要求求解结果以相同的方式存储,并且所用时间尽可能的少。
  3. 所属分类:数据结构常用算法

  1. comparestring

    0下载:
  2. 给定两个集合A、B,集合内的任一元素x满足1 ≤ x ≤ 109,并且每个集合的元素个数不大于105。我们希望求出A、B之间的关系。 任 务 :给定两个集合的描述,判断它们满足下列关系的哪一种: A是B的一个真子集,输出“A is a proper subset of B” B是A的一个真子集,输出“B is a proper subset of A” A和B是同一个集合,输出“A equals B” A和B的交集为空,输出“A and B are disjoint
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:864byte
    • 提供者:卡门
  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
    • 文件大小:1.12kb
    • 提供者:weiwei
  1. intersection

    0下载:
  2. 这是一个简单的在VC6.0下两个数组求交集的程序-get the intersection of two number groups
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:627.31kb
    • 提供者:suyang
  1. shuju

    0下载:
  2. 单链表的交集,并集,插集,逆置,定位的实现-Single list of the intersection, and set, insert set, reverse home, location of implementation
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1018byte
    • 提供者:王明
  1. xianxingbiao

    0下载:
  2. 数据结构线性表程序执行的命令包括 1)输入两个集合;2)程序过滤后输出两个集合3)求并集;4)求交集; 5)求差集; -line forms
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:2.09kb
    • 提供者:杨杨
  1. 8

    0下载:
  2. 实现两链表的并集和交集,每个单链表可以输入任意个数,合并后不能有重复数据-The list and to achieve the two sets and intersection, each one linked list can enter any number, can not have duplicate data after the merger
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:861byte
    • 提供者:Yang
  1. 0

    0下载:
  2. 假设以两个元素依值递增有序排列的线性表A和B分别表示来年各个几何(即 同一表中的元素值各不相同),现要求另辟空间构成一个线性表C,其元素为 A和B中元素的交集,且表C中的元素也依值递增有序排列。试对顺序表编写 求C的算法-Assuming the two elements by increasing the value of an ordered arrangement of the linear forms A and B, respectively, in the coming
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:924byte
    • 提供者:吴立国
  1. 1

    0下载:
  2. 对以单链表为存储结构的数组编写求A和B的交集C的算法。-A written demand for single-and B list the intersection of C algorithms.
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:710byte
    • 提供者:吴立国
  1. shuju

    0下载:
  2. 书中使用主流的程序设计语言C++作为具体的实现语言。 书的内容包括表、栈、队列、树、散列表、优先队列、排序、不相交集算法、图论算法、算法分析 、算法设计、摊还分析、查找树算法、k-d树和配对堆等。 -Book using mainstream programming language C++ as a specific implementation language. The book includes tables, stacks, queues, trees, hash tables
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:110.71kb
    • 提供者:任鹏富
  1. CI

    0下载:
  2. 一个协方差交集的matlab函数,可以直接调用的函数-Matlab code on intersection of a covariance.The function can be directly called
  3. 所属分类:matlab

    • 发布日期:2017-03-23
    • 文件大小:567byte
    • 提供者:Y.Meng
  1. 1

    0下载:
  2. 已知按值递增有序排练的两个线性表A和B,且每个线性表内部各元素互不相同。试构造线性表C,使其是A和B的交集,且其中的数字同样按值递增排列。 要求: 1)分别采用顺序表、单链表、双链表三种数据结构存储上述线性表A、B、C 2)编写一个通用的程序(无论线性表A、B和C采用顺序表、单链表还是双链表存储,该程序完全通用),实现对线性表C的构造-Known to increase the value ordered by the two linear tables A rehearsal an
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1.03kb
    • 提供者:
« 12 3 »
搜珍网 www.dssz.com