CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - 数组中最大的数

搜索资源列表

  1. zhongshu.rar

    0下载:
  2. 给定一组数,其中数字出现的次数成为重数,重数最大的数字称为众数.求一组数中的众数及其重数,Given an array of numbers, find out the one which appears the most times of all
  3. 所属分类:其他小程序

    • 发布日期:2017-04-01
    • 文件大小:946
    • 提供者:li
  1. 2

    0下载:
  2. A数组是由随机生成的且均为两位数的元素构成的6×6二维数组,在每一列中选出一个最小数,然后在所选的6个数中挑出最大的一个数,叫做“小数中的最大数”;在每一行中选出一个最大数,然后在所选的6个数中挑出最小的一个,叫做“大数中的最小数”。在文本框中分别显示这两个数。-A array is by randomly generated and double-digit elements of 6 x 6 A 2d array, each column in A minimum number of ele
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:1807
    • 提供者:张一
  1. 23456787654321

    0下载:
  2. 问题一:设a[0:n-1]是已排好序的数组。请改写二分搜索算法,使得当搜索元素x不在数组中时,返回小于x的最大元素位置i和大于x的最小元素位置j,当搜索元素在数组中时,i和j相同,均为x在数组中的位置。 问题二:采用分治策略实现对n个元素进行排序的合并排序算法,其基本思想是:将待排序元素分成大小大致相同的2个子集合,分别对2个子集合进行排序,最终将排好序的子集合合并成为所要求的排好序的集合。 问题三:给定n个矩阵{A1,A2,A3,……,An},其中,Ai与Ai+1是可乘的,i=1,2,
  3. 所属分类:Other systems

    • 发布日期:2017-04-15
    • 文件大小:9313
    • 提供者:土咩豆
  1. input10

    0下载:
  2. 从键盘输入10个整型数据,放入数组a 中,求其最大值及其所在元素的下标位置,并输出-10 integers from the keyboard input data into the array a, find the maximum value of the subscr ipt position where the element, and output
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:513333
    • 提供者:michael
  1. N6Code.java

    0下载:
  2. 编写一个程序,输出一个整数数组中的最大和最小元素、平均值及所有元素的和-Write a program that outputs an integer array of the largest and smallest elements, and all the elements and the average
  3. 所属分类:Other systems

    • 发布日期:2017-04-06
    • 文件大小:1449
    • 提供者:hanxiao
  1. Ktongfa

    0下载:
  2. 著名的大数量的排序算法--K桶排序法~在数据文本式的大数据排序时,K桶法会是一个不错的选择! k桶法:k桶法有两个主要步骤:分桶,整合。 分桶:把n个数依次放入k个桶中,除了第k个桶外,放入前k 1个桶中的数都要求后一个大于 前一个。分桶的具体规则如下: 第1个数放入第一个桶内,第2个数若大于第一个桶中的数(即第一个数)则放入第一个桶内, 否则放入第二桶内,以此类推。设现要将第j个数放入某桶中,先从第一个桶试起,若第j个 数大于当前第一个桶中最
  3. 所属分类:其他小程序

    • 发布日期:2013-05-19
    • 文件大小:7019
    • 提供者:肖煜东
  1. sub-sequence

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

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

    0下载:
  2. 编写函数mystrcat,实现和strcat完全相同的功能 数据要求 问题中的常量:#define MAXNUM 200 /*定义数组的最大长度*/ 问题的输入:char str1 /*字符串1,初始的字符串*/;char str2 /*字符串2*,要连接的字符串/ 问题的输出:char str1 /*字符串1,最终输出的字符串*/ -Write a function to achieve mystrcat, and strcat identical function D
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:10086
    • 提供者:霍佳骥
  1. sort

    0下载:
  2. 简单的c++排序算法一:高级排序算法它的工作看起来仍然象一个二叉树。首先我们选择一个中间值middle程序中我们使用数组中间值,然后把比它小的放在左边,大的放在右边(具体的实现是从两边找,找到一对后交换)。然后对两边分别使用这个过程(最容易的方法——递归)。-Simple c++ sorting algorithm: Advanced sorting algorithm it still looks like a binary tree. First, we chose an intermedi
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-23
    • 文件大小:622
    • 提供者:文华
  1. ex

    0下载:
  2. 设计一个函数,其功能是同时求得长度为20的整型数组所有元素中的最大值、最小值和平均值。并用相应的主函数对其进行测试,测试数组可以用随机数填充或者自行定义数据。-The design of a function, its function is to obtain the length of the maximum, minimum and average 20 integer array element. And its main function testing, the test array
  3. 所属分类:Other systems

    • 发布日期:2017-12-01
    • 文件大小:3881
    • 提供者:chen
  1. findLargestNum

    0下载:
  2. 找到一个数组中的最大最小数,包括找到数组中最大数和第二大的数-the max num and min num,even the second large num
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-27
    • 文件大小:538455
    • 提供者:lilong
  1. calculate-ug-lafengxia

    0下载:
  2. 对一组有序数组进行计算,当输入该数组中最大值与最小值后计算出新的有序数组,各数在新数组中的比例大小一样。-A set of ordered array calculated when the input of the array to calculate the maximum and minimum value after an ordered array of the same size as the proportion of each in a new array.
  3. 所属分类:Other systems

    • 发布日期:2017-12-03
    • 文件大小:5835
    • 提供者:mary
  1. 123

    0下载:
  2. 用递归二分检索求一组数中的最大值,代码较简单-Recursive binary search find a number of groups in the maximum, the code is relatively simple
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-23
    • 文件大小:4458539
    • 提供者:chenwei
  1. 12

    0下载:
  2. 对快速排序C++实现,求数组中的最大值或最小值都可。-For quick sort C++ achieve, find the maximum or minimum value in the array can be.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-16
    • 文件大小:4471061
    • 提供者:chenwei
  1. Majority

    0下载:
  2. 求解数组中最大的数,用C++编程语言编写的,比较简单-Solving the maximum number of array, using C++ programming language, relatively simple
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:559
    • 提供者:孙伟
  1. mxn_malloc_topscore

    0下载:
  2. 编写一个能计算任意m行n列的二维数组中的最大值,并指出其所在行列下标的函数,利用该函数和动态内存分配方法,计算任意m个班、每班n个学生的某门课成绩的最高分,并指出具有该最高分成绩的学生是第几个班的第几个学生。-Write a two-dimensional array can calculate any m rows and n columns maximum value, noting that the underlying function in their ranks, the use o
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:839
    • 提供者:沈秋实
  1. pan-duan-da-xiao

    0下载:
  2. 利用gpu检索4个存有double数值的数组中的最大值-Use gpu retrieve four maximum array
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-14
    • 文件大小:3401353
    • 提供者:吕行
  1. 8_1

    0下载:
  2. 单击 "第一题"后,统计正数数组的个数、总和、最大数、最小数。 单击"第二题"后,随机产生50个100-300之间的随机整数,将它们中的偶数放入另一个数组,再对偶数数组按从大到小的顺序进行排序。 单击"第三题"后,在数组中找出该数并删除若数组中没有该数,输出"无此数据"。 -Click the " first question" , the number of positive array of statistics, the sum of the maximum n
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1968
    • 提供者:AUTUMNDREAM
  1. 数组中查找删除

    0下载:
  2. 数组中的查找和删除数据,最大上限为100,用c语言编写,可直接运行(Array of search and delete data, the maximum limit of 100, written in C language, can be run directly)
  3. 所属分类:其他

    • 发布日期:2017-12-17
    • 文件大小:5120
    • 提供者:闻怡
  1. 寻找最大值和第二大值

    0下载:
  2. 控制台程序,利用vc编制程序,搜索最大值和第二大值的方法,成功实现所给一维数组中最大值和第二大值的寻找,方便程序寻优移植。
  3. 所属分类:其他小程序

« 12 »
搜珍网 www.dssz.com