CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 数组 最大值

搜索资源列表

  1. a3003@04.02

    0下载:
  2. 本程序算法相对简单,可以申请一个2维数组,作为方格的抽象,本程序做了一个尝试,即将2维数组变为一维,但是仍然可以通过整数除法与模运算求得相应与2维数组的行列数值。本题算法其实是经典迷宫问题的一个变种。只是判断规则和行走规则有所出入。解决思想基本一致。现规定从当前点有4*step(step是最大步长)个选择(如果存在的话,否则到方格边界则不走);采用回溯遍历所有的情况,取得最大值输出。-The program algorithm is relatively simple, can apply fo
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1780050
    • 提供者:张飞
  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
    • 文件大小:1526
    • 提供者:胡志明
  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
    • 文件大小:723
    • 提供者:YCL
  1. e

    0下载:
  2. 题1:编写一个对具有n个元素的数组x[]求最大值的程序,要求将求最大值的函数设计成函数模板。 题2:编写一个函数模板add,能够实现int,double, float, char数据类型的加法运算(包括它们之间的混合加法运算)。 题3:定义一个类模板Sample实现int,double, float数据类型的比较,并能给出最大值,最小值;-Problem 1: Write one pair of n-element array x [] seek maximum
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-08
    • 文件大小:1359
    • 提供者:吴玉祝
  1. sort

    0下载:
  2. 冒泡排序法,选择排序法,以及求一个2维数组中元素的和,还有求所有元素中的最大值,以及数组的倒置等功能-different sorts in VC++
  3. 所属分类:Data structs

    • 发布日期:2017-05-22
    • 文件大小:7098483
    • 提供者:刘微
  1. 1

    0下载:
  2. 已知字符串,按字典顺序排列、存储,并分析存储方案。 2.有一个100个元素的数组,值为实数,写出求最大值及位置的算法,并讨论存储结构。以上两题具体描述见课件。-Known string, according to the dictionary order, storage, and analysis of storage scheme. 2 there is an array of 100 elements, value for real numbers, written f
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:390895
    • 提供者:李林
  1. java

    0下载:
  2. 求一维int型数组A中元素的最大值,最小值,并将并将其输出;编写打印三个矩形的程序;-Seeking a one-dimensional array of type int elements maximum, minimum, and and outputs writing a program to print three rectangular
  3. 所属分类:JavaScript

    • 发布日期:2017-03-21
    • 文件大小:1290
    • 提供者:朴飞雪
  1. basicfunction

    0下载:
  2. 完成二维数组求最大值,最小值,四舍五入等的函数,并求出最大值,最小值所在的位置。-Completed the two-dimensional array to seek maximum, minimum, rounded function, and calculated the maximum and minimum value of the location.
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-24
    • 文件大小:284508
    • 提供者:赵建涛
  1. sub-sequence

    0下载:
  2. 首先开设一个空间比较大的数组,从数组尾部开始。比较最后一个数和最 初设置在数组中的一个最大值,使得最小子序列及最小子序列初始化。记录在当前位置的最小子序列数,接着,继续与在其前面相邻的数进行比较。如果后者大于前者,者比较二者携带记录的最小子序列数的大小,如果后者持有的最小子序列数大于前者,则以后者为基准,最小子序列保持不变。反之,则将后者的子序列数自加一,将其改为前所持有的最小子序列数。继续重复前面的动作,最后得出最长不下降子序列的数目及内容。 -First to open a larg
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:619
    • 提供者:刘善梅
  1. array

    0下载:
  2. 用引用的方法求二维数组的最大值及其下标,谭浩强书上的-Use the methods to controls.
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-04
    • 文件大小:1063629
    • 提供者:chaos
  1. SeqList

    0下载:
  2. 针对带附加头结点的单链表,试编写下列函数。 (1)定位函数Locate:在单链表中寻找第i个结点。若找到,则函数返回第i个结点的地址;若找不到,则函数返回NULL。 (2)求最大值函数max:通过一趟遍历在单链表中确定值最大的结点。 (3)统计函数number:统计单链表中具有给定值x的所有元素。 (4)建立函数create:根据一维数组a[n]建立一个单链表,使单链表中各元素的次序与a[n]中各元素的次序相同,要求该程序的时间复杂性为O(n)。 -Singly linked
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:1514
    • 提供者:zby
  1. prog3

    0下载:
  2. 输出某个整数数组的最大值和最小值。(练习循环与数组)-Maximum and minimum values ​ ​ of the output of an array of integers. (Exercise cycle, and array)
  3. 所属分类:Java Develop

    • 发布日期:2017-04-01
    • 文件大小:10483
    • 提供者:
  1. zy23

    0下载:
  2. 有一个字节型数组,求最大值、最小值和平均值:1)作为无符号数,2)作为带符号。-A byte array, the maximum, minimum and average value: 1) as unsigned) as unsigned.
  3. 所属分类:assembly language

    • 发布日期:2017-04-01
    • 文件大小:1578
    • 提供者:吴边
  1. NSGA

    0下载:
  2. 基于matlab7以上版本的遗传算法N为种群大小,M为目标数目,V为决策变量数目,min_range为决策变量最小值数组, max_range为决策变量最大值数组,f为初始群体-Genetic algorithm N-based version of the matlab7 more than the population size, M is the number of targets, V is the number of decision variables, min_range the
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-06
    • 文件大小:837413
    • 提供者:方家安
  1. MAX

    0下载:
  2. 求最大值,调用一某个函数来求最大值,你想求什么的最大值主能求什么的最大值,但是是数组的哦-GET THE MAX NUMBER
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:59556
    • 提供者:zhangpeng
  1. 8.13

    0下载:
  2. 设计一个名为Location的类,定位2维数组中的最大值及其位置。-The design of a class called Location, to locate the maximum value and its position in the 2-dimensional array.
  3. 所属分类:Applet

    • 发布日期:2017-11-30
    • 文件大小:4717
    • 提供者:kevin
  1. 2

    0下载:
  2. 若矩阵Am?n中的某一元素A[i][j]是第i行中的最小值,同时又是第j列中的最大值,则称此元素为该矩阵的一个鞍点。假设以二维数组存放矩阵,试编写一个函数,确定鞍点在数组中的位置(若鞍点存在时),并分析该函数的时间复杂度。 -If the matrix Am? N of an element A [i] [j] is the minimum value of the i-th row, is also the maximum value of the j-th column in the,
  3. 所属分类:Oracle

    • 发布日期:2017-11-21
    • 文件大小:8621
    • 提供者:王二牛
  1. zuidazhi

    0下载:
  2. 题目:输入一个整形数组,数组里有正数也有负数。数组中连续的一个或多个整数组成一个子数组,每个 子数组都有一个和。求所有子数组的和的最大值。要求时间复杂度为O(n)。 -Title: Enter a plastic array, the array positive also negative. Continuous one or more integer array is composed of a sub-array, and each has a sub-array and. Fin
  3. 所属分类:Software Testing

    • 发布日期:2017-12-10
    • 文件大小:10814
    • 提供者:杨文
  1. TwoDimensional

    0下载:
  2. 二维表1、 编写一个Java应用程序,计算并输出一维数组(9.8,12,45,67,23,1.98,2.55,45)中的最大值和最小值。-Dimensional table, write a Java application to calculate and output the maximum and minimum values ​ ​ of the one-dimensional array (9.8,12,45,67,23,1.98,2.55,45).
  3. 所属分类:Java Develop

    • 发布日期:2017-11-19
    • 文件大小:963
    • 提供者:s
  1. queue

    0下载:
  2. 1.利用数组实现优先队列; 2.利用链表实现优先队列; (注:默认以最大值为优先级最高,思考:如何实现用户指定优先级(最大优先或最小优先)) -Using an array of priority queues using a linked list priority queue (Note: The default maximum value for the highest priority, thinking: how to implement user-specified
  3. 所属分类:software engineering

    • 发布日期:2017-11-18
    • 文件大小:72128
    • 提供者:丹枫晓晓
« 1 2 3 45 6 7 8 9 10 »
搜珍网 www.dssz.com