没有合适的资源?快使用搜索试试~ 我知道了~
首页linux shell实现求一个多维数组中的最大和最小值
资源详情
资源评论
资源推荐

linux shell实现求一个多维数组中的最大和最小值实现求一个多维数组中的最大和最小值
主要介绍了linux 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
echo "the numbers is:"
cat 99shu
mnum=0
min=99999
while read line
do
declare -a arr=($line)
lnum=$(echo $line | wc -w)
i=0
while (( $i<$lnum ))
do
(($mnum<${arr[i]})) && mnum=${arr[i]}
(($min>${arr[i]})) && min=${arr[i]}
let ++i
done
done < 99shu
echo "the max number is $mnum"
echo "the min number is $min"
实现实现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)"
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/bash
min=$(cat 99shu | tr "\t" ""|tr " " ""|sort -n|uniq|grep -v "^$"|head -1)
max=$(cat 99shu | tr " " ""|tr " " ""|sort -n|uniq|grep -v "^$"|tail -1)
echo "The MAX number is $max"




















weixin_38545923
- 粉丝: 4
- 资源: 937
上传资源 快速赚钱
我的内容管理 收起
我的资源 快来上传第一个资源
我的收益
登录查看自己的收益我的积分 登录查看自己的积分
我的C币 登录后查看C币余额
我的收藏
我的下载
下载帮助

会员权益专享
最新资源
- ARM Cortex-A(armV7)编程手册V4.0.pdf
- ABB机器人保养总结解析.ppt
- 【超详细图解】菜鸡如何理解双向链表的python代码实现
- 常用网络命令的使用 ipconfig ping ARP FTP Netstat Route Tftp Tracert Telnet nslookup
- 基于单片机控制的DC-DC变换电路
- RS-232接口电路的ESD保护.pdf
- linux下用time(NULL)函数和localtime()获取当前时间的方法
- Openstack用户使用手册.docx
- KUKA KR 30 hA,KR 60 hA机器人产品手册.pdf
- Java programming with JNI
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈



安全验证
文档复制为VIP权益,开通VIP直接复制

评论0