佳木斯湛栽影视文化发展公司

主頁 > 知識(shí)庫 > linux shell實(shí)現(xiàn)求一個(gè)多維數(shù)組中的最大和最小值

linux shell實(shí)現(xiàn)求一個(gè)多維數(shù)組中的最大和最小值

熱門標(biāo)簽:AI電銷 Linux服務(wù)器 服務(wù)外包 地方門戶網(wǎng)站 百度競價(jià)排名 網(wǎng)站排名優(yōu)化 呼叫中心市場需求 鐵路電話系統(tǒng)

同事發(fā)了一道shell題,是求一個(gè)多維數(shù)組中的最大和最小值
如文件 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

我的實(shí)現(xiàn)之一:

#! /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"

結(jié)果:

the max number is: 6546
the min number is : 11

實(shí)現(xiàn)之二:

#! /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"

實(shí)現(xiàn)3,強(qiáng)大的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 )"

實(shí)現(xiàn)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獲取字符串長度的多種方法總結(jié)
  • 用Shell判斷字符串包含關(guān)系的方法小結(jié)
  • linux shell字符串內(nèi)置的常用操作(獲取長度、查找、替換)
  • Shell中判斷字符串是否為數(shù)字的6種方法分享
  • Shell腳本計(jì)算字符串長度和判斷字符串為空小技巧
  • shell編程中的字符串截取方法小結(jié)
  • Shell腳本實(shí)現(xiàn)簡單分割字符串
  • Shell腳本實(shí)現(xiàn)查找字符串中某字符最后出現(xiàn)的位置
  • Linux shell數(shù)組循環(huán)的實(shí)例詳解
  • shell腳本編程之?dāng)?shù)組
  • Shell中創(chuàng)建序列和數(shù)組(list、array)的方法
  • shell腳本字符串和數(shù)組的使用操作方法

標(biāo)簽:衡水 仙桃 黃山 銅川 蘭州 湖南 崇左 湘潭

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《linux shell實(shí)現(xiàn)求一個(gè)多維數(shù)組中的最大和最小值》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    连州市| 广河县| 南丹县| 略阳县| 和林格尔县| 琼海市| 湖口县| 东明县| 土默特右旗| 台南县| 东安县| 平潭县| 黄大仙区| 红原县| 印江| 克山县| 财经| 永和县| 内江市| 车致| 太仆寺旗| 高青县| 威信县| 凤庆县| 东乌| 阆中市| 徐闻县| 鄄城县| 淮安市| 长宁区| 柞水县| 景泰县| 绵阳市| 莱芜市| 海城市| 毕节市| 南皮县| 兴山县| 独山县| 旬邑县| 阳泉市|