时间:2021-05-22
同事发了一道shell题,是求一个多维数组中的最大和最小值
如文件 99file:
33 55 23 56 99
234 234 545 6546 34
11 43 534 33 75
43 34 76 756 33
343 890 77 667 55
我的实现之一:
#! /bin/bashecho "the file is :"cat 99shumax=0min=999999line=1dnum=$(cat 99shu| wc -l)while (($line<=$dnum))dofor i in $(cat 99shu|head -"$line") do ((max<$i))&&max=$i ((min>$i))&&min=$i donelet ++linedone echo "the max number is: $max"echo "the min number is : $min"结果:
the max number is: 6546
the min number is : 11
实现之二:
#! /bin/bash# echo the MAX and the MINecho "the numbers is:"cat 99shumnum=0min=99999while read line dodeclare -a arr=($line)lnum=$(echo $line | wc -w)i=0while (( $i<$lnum ))do(($mnum<${arr[i]})) && mnum=${arr[i]}(($min>${arr[i]})) && min=${arr[i]}let ++idonedone < 99shuecho "the max number is $mnum"echo "the min number is $min"实现3,强大的awk
#! /bin/bashecho "the MAX number is: $( cat 99shu | awk '{for(i=1;i<=NF;i++)if(max<$i) max=$i;print max}'|tail -1)"echo "eht MIN number is: $( cat 99shu | awk '{min=999999;for(i=1;i<=NF;i++)if(min>$i)min=$i;print min}'|sort|head -1 )"实现4:
#!/bin/bashmin=$(cat 99shu | tr "\t" "\n"|tr " " "\n"|sort -n|uniq|grep -v "^$"|head -1)max=$(cat 99shu | tr "\t" "\n"|tr " " "\n"|sort -n|uniq|grep -v "^$"|tail -1)echo "The MAX number is $max"echo "The MIN number is $min"声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
计数排序找到给定序列的最小值与最大值创建一个长度为最大值-最小值+1的数组,初始化都为0然后遍历原序列,并为数组中索引为当前值-最小值的值+1此时数组中已经记录
做项目的时候遇到一个返回查询内容里面,只取最大和最小值问题。首先复制代码代码如下:/***数组最大值*@param{Object}array*@return{T
函数介绍a.topk()求a中的最大值或最小值,返回两个值,一个是a中的值(最大或最小),一个是这个值的索引。代码示例>>>importtorch>>>a=to
以下实例演示了如何通过Collections类的Collections.max()和Collections.min()方法来查找数组中的最大和最小值:Main.
找最大值最小值位置从键盘任意输入10个整数,计算并输出最大值和最小值及其它们在数组中的下标位置。程序运行结果示例1:Input10numbers:1234567