Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Summary of array operations and bubble sorting implementation script tutorial in shell

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly explains "the summary of array operation and the method tutorial of bubbling sorting script in shell". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Next let the editor to take you to learn the "array operation summary and bubble sorting in shell script method tutorial" it!

Introduction to the shell array:

The code is as follows:

/ / Array variable definition:

$arr= (1 3 6 8 2 5 9 0 7 4)

/ / get the first element by default

$echo $arr

/ / accessed through the subscript, the second element of the array is taken below. The subscript of the shell array starts at 0.

$echo ${arr [1]}

/ / access the entire array

$echo ${arr [@]} or echo ${arr [*]}

/ / get the length of the array (maximum subscript)

$echo ${# arr [@]}

/ / get the length of a single element string

$echo ${# arr [3]}

/ / get part of the array content by slicing

$echo ${arr [@]: 1:2}

/ / start with the second element

$echo ${arr [@]: 2}

/ / to the second element

$echo ${arr [@]:: 2}

Shell implements bubble sorting:

The code is as follows:

#! / bin/sh

# sorting following array

Echo "please input a number list:"

Read-an arr

For ((iTuno; ii; jmurf -))

Do

# echo $j

If [[${arr [j]}-lt ${arr [j-1]}]]

Then

Tasking ${arr [j]}

Arr [j] = ${arr [j-1]}

ARR [j-1] = $t

Fi

Done

Done

Echo "after sorting:"

Echo ${arr [@]}

[tech@ebs sqlee] $. / sorting.sh

Please inout a number list:

0 2 9 6 8 5 7 4 3 1

After sorting:

0 1 2 3 4 5 6 7 8 9

At this point, I believe that you have a deeper understanding of the "array operation summary and bubble sorting script tutorial in shell". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report