Shell腳本——數組的冒泡排序

[root@localhost ~]# vi maopao.sh #!/bin/bash arr=(3 1 5 4 8) a=${#arr[*]} for ((i=1; i<$a; i++)) do for ((j=0; j<$a-i; j++)) do if [ ${arr[$j]} -gt ${arr[$[$j + 1]]} ];then temp=${arr[$j
相關文章
相關標籤/搜索