[原创]又是一道shell题之四条大路通罗马
同事发了一道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/bash echo "the file is :" cat 99shu max=0 min=999999 line=1 dnum=$(cat 99shu| wc -l) while (($line<=$dnum)) do for i in $(cat 99shu|head -"$line") do ((max<$i))&&max=$i ((min>$i))&&min=$i done let line done
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 MIN
lnum=$(echo $line | wc -w) let i done < 99shu echo "the max number is $mnum" -------------------------------------------------------------------------------------------- 实现3,强大的awk #! /bin/bash echo "the MAX number is: $( cat 99shu | awk ''{for(i=1;i<=NF;i )if(max<$i) max=$i;print max}''|tail -1)"
------------------------------------------------------------------------------------------------ 实现4: #!/bin/bash 本文出自 “你就当我是浮夸吧” 博客,请务必保留此出处http://2804976.blog.51cto.com/2794976/536020 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |