Home Backend Development PHP Tutorial 不使用php api函数实现数组的交换排序示例_php实例

不使用php api函数实现数组的交换排序示例_php实例

Jun 07, 2016 pm 05:20 PM
Array sort

复制代码 代码如下:

$arr = array(900 , 20 , 16 , 50 , -2 , 10 , 3);
$min = $max = 0;

for ($j=0;$j for($i=0;$i  if($arr[$i] > $arr[$i+1]){
   $min = $arr[$i+1];
   $arr[$i+1] = $arr[$i];
   $arr[$i] = $min;
  }
 }
 echo "当前数组为:";print_r($arr);echo "
";
}

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Fast array sorting method that preserves key names in PHP Fast array sorting method that preserves key names in PHP May 02, 2024 pm 03:06 PM

Fast array sorting method in PHP that preserves key names: Use the ksort() function to sort the keys. Use the uasort() function to sort using a user-defined comparison function. Practical case: To sort an array of user IDs and scores by score while retaining the user ID, you can use the uasort() function and a custom comparison function.

JS array sorting: in-depth analysis of the working principle and mechanism of the sort() method JS array sorting: in-depth analysis of the working principle and mechanism of the sort() method Dec 28, 2023 am 11:47 AM

To deeply understand JS array sorting: the principles and mechanisms of the sort() method, specific code examples are required. Introduction: Array sorting is one of the very common operations in our daily front-end development work. The array sorting method sort() in JavaScript is one of the most commonly used array sorting methods. However, do you really understand the principles and mechanisms of the sort() method? This article will give you an in-depth understanding of the principles and mechanisms of JS array sorting, and provide specific code examples. 1. Basic usage of sort() method

How to keep key names after sorting PHP array by value? How to keep key names after sorting PHP array by value? May 02, 2024 pm 04:09 PM

The way to sort an array by value in PHP while preserving the key names is to use the usort() function to sort the array by value. Pass an anonymous function to the usort() function as a comparison function, which returns the difference in element values. usort() will sort the array according to the anonymous function while keeping the key names unchanged.

Guide to writing a custom sorting algorithm for PHP arrays Guide to writing a custom sorting algorithm for PHP arrays Apr 27, 2024 pm 06:12 PM

How to write a custom PHP array sorting algorithm? Bubble sort: Sorts an array by comparing and exchanging adjacent elements. Selection sort: Select the smallest or largest element each time and swap it with the current position. Insertion sort: Insert elements one by one into the sorted part.

Sort arrays according to custom sorting rules in PHP, retaining original key names Sort arrays according to custom sorting rules in PHP, retaining original key names May 04, 2024 am 09:27 AM

In PHP, use the uasort() function to sort an array according to custom sorting rules while retaining the original key names. A custom comparison function is a function that takes two elements as input and returns an integer: a negative number means the former is less than the latter, zero means they are equal, and a positive number means the former is greater than the latter.

Tips for multi-dimensional sorting of PHP arrays: Optimizing sorting efficiency Tips for multi-dimensional sorting of PHP arrays: Optimizing sorting efficiency Apr 30, 2024 am 09:54 AM

Tips for optimizing multi-dimensional array sorting in PHP: Create user-defined functions for sorting Use the array_multisort() function to apply multi-dimensional key reordering Practical case: Sorting products by array key-value pairs

PHP algorithm: How to use bubble sort to improve array sorting efficiency? PHP algorithm: How to use bubble sort to improve array sorting efficiency? Sep 19, 2023 am 10:28 AM

PHP algorithm: How to use bubble sort to improve array sorting efficiency? Bubble sort is a simple but less efficient sorting algorithm, but we can improve the efficiency of bubble sort through some optimization strategies. This article will introduce how to use the bubble sort algorithm in PHP to optimize the sorting process of arrays, and provide specific code examples. The basic principle of bubble sorting is to start from the first element of the array each time and compare the sizes of two adjacent elements in sequence. If the previous element is greater than the following element, their positions are swapped. After such a round of comparison, the final

asort() function in PHP sorts array by value asort() function in PHP sorts array by value Nov 18, 2023 am 10:56 AM

The asort() function in PHP sorts an array by value. Specific code examples are required. PHP is a widely used server-side scripting language that has rich array processing functions. Among them, the asort() function is a very useful function, which can sort the array according to its value. This article will introduce the use of the asort() function in detail and give specific code examples. The function of the asort() function is to sort the array in ascending order by value while maintaining the association between keys and values. It is done by modifying the original number

See all articles