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

搜索资源列表

  1. SortedSet

    0下载:
  2. 本程序用VC++完成 定义类模板SortedSet (包括方法的实现) ,即元素有序的集合,集合元素的类型和集合元素的最大个数可由使用者确定。要 求该类模板对外提供以下三种操作: insert:加入一个新的元素到合适的位置上,并保证集合元素的值不重复; get:返回比给定值大的最小元素的地址。若不存在,返回-1; del:删除与给定值相等的那个元素,并保持剩余元素的有序性。-the completion of procedures with VC SortedSet clas
  3. 所属分类:数据结构常用算法

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

    0下载:
  2. 若在矩阵Am×n中存在一个元素A[i-1,j-1],其满足A[i-1,j-1]是第i行元素中最小值,且又是第j列元素中最大值,则称此元素为该矩阵的一个马鞍点。用二维数组存储矩阵Am×n ,设计算法求出矩阵中所有马鞍点。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.79kb
    • 提供者:caosihai
  1. 数据结构的C++描述

    1下载:
  2. 目 录 译者序 前言 第一部分 预备知识 第1章 C++程序设计 1 1.1 引言 1 1.2 函数与参数 2 1.2.1 传值参数 2 1.2.2 模板函数 3 1.2.3 引用参数 3 1.2.4 常量引用参数 4 1.2.5 返回值 4 1.2.6 递归函数 5 1.3 动态存储分配
  3. 所属分类:数据结构常用算法

    • 发布日期:2009-10-17
    • 文件大小:4.89mb
    • 提供者:gufeng20081010
  1. math

    0下载:
  2. 数据统计,可以计算最大值和最小值,还有平均值。可以删除最大值最小值。可以排序。-Statistics, maximum and minimum values ​ ​ can be calculated, as well as average. You can delete the maximum minimum. Can be sorted.
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:2.84kb
    • 提供者:李星婷
  1. shuangxianglianbiao

    0下载:
  2. 实现双向链表所存储线性表的各种操作。要求提供数据的插入、删除、查找、两个数据交换、求所有数据平均值、最大值、最小值的操作。先利用随机函数产生100个随机整数,建立线性表的存储结构,然后完成上述的功能。分析程序的时间、空间复杂度。-Achieve bi-directional linear list stored various operating table. Request for data insert, delete, search, both for data exchange, and
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2.11kb
    • 提供者:黄啸尘
  1. maandian

    0下载:
  2. 找马鞍点:1. 若在矩阵Am×n中存在一个元素A[i][j],其满足A[i][j]是第i行元素中最小值,且又是第j列元素中最大值,则称此元素为该矩阵的一个马鞍点。用二维数组存储矩阵Am×n ,设计算法求出矩阵中所有马鞍点。-Find a saddle point: 1. If in the matrix Am × n, there is a element of A [i] [j], the meet A [i] [j] is the first line element in the mini
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:153.06kb
    • 提供者:李月
  1. 12323

    0下载:
  2. 找出单链表的最大值和最小值,删除单链表中不等于最大值和最小值的节点。-Single-linked list to find the maximum and minimum values, the deletion of a single list in does not mean maximum and minimum values of the node.
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:11.2kb
    • 提供者:星辰
  1. searchthemaxandmininarray

    0下载:
  2. 分治思想是算法中很常用的一种技巧。在N个数中求最小值Min和最大值Max,我们只需分别求出前后N/2个数的N/2个数的Min和Max,然后取较小的Min,较大的Max即可(只需较大的数和较大的数比较,较小的数和较小的数比较,两次就可以了)。-You can use the procedure to find the Minnumber and the Maxnumber in the array.
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:783byte
    • 提供者:徐天扬
  1. VC7775

    0下载:
  2. 自己编写的二叉查找树,分享给想学数据结构的开发人员。包括节点插入、节点删除、最大值,最小数值,后继元素,重载标准输出操作符…… -I have written a binary search tree data structure wants to learn to share the development of staff. Including node insertion, node deletion, the maximum value, minimum value, subsequ
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:502.56kb
    • 提供者:刘星
  1. maxamin

    0下载:
  2. 如何用分治法求一个数组中的最大值和最小值-With the Method find an array of maximum and minimum values
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:552byte
    • 提供者:phoenix
  1. good

    0下载:
  2. 第4章 数组 1. 定义一个int型的一维数组,包含10个元素,分别赋一些随机整数,然后求出所有元素的最大值, 最小值,平均值,和值,并输出出来。 -Chapter 4 Array 1. Define a one-dimensional array of type int, contains 10 elements, respectively, assigned some random integer, then find all the elements of the maximu
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1.49kb
    • 提供者:胡志明
  1. 101

    0下载:
  2. 若矩阵Am×n中的某个元素aij是第i行中的最小值,同时又是第j列中的最大值,则称此元素为该矩阵中的一个马鞍点。假设以二维数组存储矩阵Am×n ,试编写求出矩阵中所有马鞍点的算法。 注意一行(列)中可能有多个最小(大)值 可用下列矩阵进行测试: 1 2 3 1 1 1 4 7 6 2 2 2 7* 7* 9 3* 3* 3* (*表示马鞍点) -If the matrix Am × n aij is an element in the i-th row of the
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:723byte
    • 提供者:YCL
  1. andian

    0下载:
  2. 该程序完成查找矩阵中的鞍点功能,设计了找某行的最大值和某列的最小值函数。-Completion of the program to find the saddle point matrix function, designed to find a line of maximum and minimum values ​ ​ of a column function
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:1.03kb
    • 提供者:王明
  1. maandian

    0下载:
  2. 如果A[i][j]是第i行中值最小的元素且又是j列中值最大的元素,则称之为一个马鞍点,要求实现一个mхn矩阵的所有马鞍点-a small project
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:581byte
    • 提供者:陈婧
  1. 1

    1下载:
  2. 有一个顺序表,编写一个在顺序表中查找最大和最小值元素的函数,并分析其时间复杂度T(n)。-Have an order form, write a function of maximum and minimum elements in the order table to find, and analyze its time complexity T (n).
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-04-23
    • 文件大小:1.85kb
    • 提供者:包包
  1. diff

    0下载:
  2. 对于给定的差分约束,计算满足差分约束的变量最大值与最小值之差的最小值。-For a given differential constraints, the calculation to satisfy the differential constraint variable maximum and minimum values ​ ​ of the difference between the minimum.
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:57.13kb
    • 提供者:张三
  1. bitreezonghe

    0下载:
  2. /*综合性试验(排序二叉树) 1.建立一棵排序二叉树(随机产生1000个0~999的数) 2.前、中、反中序遍历 3.统计叶子数、结点数、深度 4.查找、插入、删除 5.求最大、最小值 6.求查找的次数n1,与二分查找作比较(n1>n2,二叉树不均衡) 7.排序算法与中序遍历的效率比较 *8.将上述各步的结果写入文件(result.txt)-/* Test (sort of binary tree) (1) to establish a sort bin
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2.87kb
    • 提供者:向曦
  1. rmq

    0下载:
  2. 经典RMQ问题,用来实现区间最大值和最小值的统计,预处理时间nlogn,查询时间O(1)-Classic the RMQ question, is used to achieve the interval maximum value and the minimum statistics, pretreatment time nlogn, query time O (1)
  3. 所属分类:Data structs

    • 发布日期:2017-11-14
    • 文件大小:719byte
    • 提供者:朱铖恺
  1. zuidazuixiao

    0下载:
  2. 用C++编写的求最大和最小值,并且空间复杂度是O(1),时间复杂度3n/2-2.-Written in C++ uates the maximum and minimum values, and the space complexity is O (1), the time complexity of 3n/2-2.
  3. 所属分类:Data structs

    • 发布日期:2017-04-29
    • 文件大小:9.82kb
    • 提供者:刘博
  1. POJ3273

    0下载:
  2. POJ3273 Monthly Expense题解 题目分析: 给出N个数,要求你合并连续的数,使其合并在满足不差过M个合并后的集合的时候,不超过M个集合的和的最大值最小。-Farmer John is an astounding accounting wizard and has realized he might run out of money to run the farm. He has already calculated and recorded the exact amo
  3. 所属分类:Data structs

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