同事發了一道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" "\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"
您可能感興趣的文章:- Shell獲取字符串長度的多種方法總結
- 用Shell判斷字符串包含關系的方法小結
- linux shell字符串內置的常用操作(獲取長度、查找、替換)
- Shell中判斷字符串是否為數字的6種方法分享
- Shell腳本計算字符串長度和判斷字符串為空小技巧
- shell編程中的字符串截取方法小結
- Shell腳本實現簡單分割字符串
- Shell腳本實現查找字符串中某字符最后出現的位置
- Linux shell數組循環的實例詳解
- shell腳本編程之數組
- Shell中創建序列和數組(list、array)的方法
- shell腳本字符串和數組的使用操作方法