linux shell 動態產生 數組系列 seq提示__linux

來源:互聯網
上載者:User

如果對linux shell 數組不是很熟悉的話,請看上一篇文章:linux shell 數組建立及提示  ,這篇文章主要講是動態產生數組系列。方法應該很多,我這裡主要以一個求和計算的題目為例進行分析。

 

題目:請用linux shell 寫一段指令碼,實現從1..1000中所有偶數的和值。

 

方法一:

通過while 迴圈得到需要的結果:

start=1;

total=0;

while [ $start -le 1000 ];do

    [[ $(($start%2)) == 0 ]]&&total=$(($total+$start));

   start=$(($start+1));

done;

echo $total;

 

[chengmo@centos5 ~]$ start=1;total=0;while [ $start -le 1000 ];do    [[ $(($start%2)) == 0 ]]&&total=$(($total+$start));   start=$(($start+1));done;echo $total;
250500

以上運行結果是:249500,在linux shell 中,”;”作為命令列分隔字元。如果大家對於$(()) 運算子號不是很理解,可以查看:linux shell 實現 四則運算(整數及浮點) 簡單方法  ,如果對於:[[]] [] 符號,可以參考另外一篇文章linux shell 邏輯運算子、邏輯運算式詳解。

 

方法二:

通過 for 迴圈得到結果:

start=0;

total=0;

for i in $(seq $start 2 1000); do

    total=$(($total+$i));

done;

echo $total;

[chengmo@centos5 ~]$ start=0;total=0;for i in $(seq $start 2 1000); do    total=$(($total+$i));done;echo $total;       
250500

 

上面語句已經代碼方面明顯優於方法一,而且效能方面表現也很好。下面比較就可以發現:

 

 

比較效能:

[chengmo@centos5 ~]$ time (start=0;total=0;for i in $(seq $start 2 1000); do    total=$(($total+$i));done;echo $total;)              250500

real    0m0.016s
user    0m0.012s
sys     0m0.003s
[chengmo@centos5 ~]$ time (start=1;total=0;while [ $start -le 1000 ];do    [[ $(($start%2)) == 0 ]]&&total=$(($total+$start));   start=$(($start+1));done;echo $total;)
250500

real    0m0.073s
user    0m0.069s
sys     0m0.004s

方法一耗時 是方法二的 6倍。

 

 

seq 使用:

seq [OPTION]... LAST
seq [OPTION]... FIRST LAST
seq [OPTION]... FIRST INCREMENT LAST

[chengmo@centos5 ~]$ seq 1000   ‘起始預設是 1,間隔預設也是1

[chengmo@centos5 ~]$seq 2 1000  ‘間隔預設是1

[chengmo@centos5 ~]$seq 1 3 10    '從1開始,到10 間隔為3 結果是:1 4 7 10

說明:預設間隔是“空格” 如果想換成其它的可以帶參數:-s

[chengmo@centos5 ~]$seq -s'#' 1 3 10

1#4#7#10

 

應用技巧:   產生連續數組系列:

[chengmo@centos5 ~]$ a=($(seq  1 3 10))   
[chengmo@centos5 ~]$ echo ${a[1]}
4
[chengmo@centos5 ~]$ echo ${a[@]}
1 4 7 10

    產生連續相同字元:

[chengmo@centos5 ~]$ seq -s '#' 30 | sed -e 's/[0-9]*//g'
#############################

上面例子:通過加入佔空間字元‘#’後,替換掉數字, 產生連續相同字元’#’,這個在以後書寫中還是有不少協助。


http://www.cnblogs.com/chengmo/archive/2010/09/30/1839668.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.