During the process of array operations, sometimes it is necessary to obtain the intermediate value in the array, such as the median of the array. PHP is a very flexible language and can use a variety of methods to obtain the intermediate value of an array. In this article, we will introduce several ways to get the intermediate value of an array.
Method 1: Take the median after sorting
This method is relatively simple. You only need to sort the array and then take the middle value. However, this method has an obvious shortcoming, that is, the time complexity of sorting is O(nlogn). When n is large, the speed is relatively slow.
PHP provides a sort() function that can sort the array, and we can use this function to achieve it.
Code example:
function get_median($arr) { sort($arr); $count = count($arr); $middle = floor(($count - 1) / 2); if ($count % 2 == 0) { $median = ($arr[$middle] + $arr[$middle + 1]) / 2; } else { $median = $arr[$middle]; } return $median; }
Method 2: Use array functions to find the median
PHP provides some array functions, we can use them to calculate the median value of an array . The specific method is to first use the count() function to get the length of the array, then use the array_slice() function to take out the middle segment from the array, and finally use the array_sum() function to sum it up, and then divide it by the length. This method is simpler and faster.
Code example:
function get_median($arr) { sort($arr); $count = count($arr); $middle = floor(($count - 1) / 2); $median = ($count % 2 == 0) ? (array_sum(array_slice($arr, $middle, 2)) / 2) : $arr[$middle]; return $median; }
Method 3: Quick selection algorithm
Both of the above two methods require sorting the array, so the time complexity is relatively high. There is actually a method called QuickSelect that can find the median without sorting. The quick selection algorithm has many similarities with the quick sort algorithm, but it only requires part of the quick sort, so its time complexity is O(n).
Code example:
function get_median($arr) { if (count($arr) % 2 == 0) { $k = count($arr) / 2; } else { $k = (count($arr) + 1) / 2; } return quick_select($arr, $k); } function quick_select(&$arr, $k) { if (count($arr) == 1) return $arr[0]; $p = $arr[0]; $f = $l = array(); foreach ($arr as $v) { if ($v $p) $l[] = $v; } if ($k count($arr) - count($l)) { return quick_select($l, $k - (count($arr) - count($l))); } else { return $p; } }
The above are three methods of obtaining the intermediate value of an array. Different methods are suitable for different scenarios. If you need to get multiple intermediate values, you can use a variation of the above method. No matter which method you use, you need to first understand the basic operations of arrays in order to better handle arrays.
The above is the detailed content of How to get the middle value of an array in php. For more information, please follow other related articles on the PHP Chinese website!

This article examines current PHP coding standards and best practices, focusing on PSR recommendations (PSR-1, PSR-2, PSR-4, PSR-12). It emphasizes improving code readability and maintainability through consistent styling, meaningful naming, and eff

This article details implementing message queues in PHP using RabbitMQ and Redis. It compares their architectures (AMQP vs. in-memory), features, and reliability mechanisms (confirmations, transactions, persistence). Best practices for design, error

This article details installing and troubleshooting PHP extensions, focusing on PECL. It covers installation steps (finding, downloading/compiling, enabling, restarting the server), troubleshooting techniques (checking logs, verifying installation,

This article explains PHP's Reflection API, enabling runtime inspection and manipulation of classes, methods, and properties. It details common use cases (documentation generation, ORMs, dependency injection) and cautions against performance overhea

PHP 8's JIT compilation enhances performance by compiling frequently executed code into machine code, benefiting applications with heavy computations and reducing execution times.

This article explores strategies for staying current in the PHP ecosystem. It emphasizes utilizing official channels, community forums, conferences, and open-source contributions. The author highlights best resources for learning new features and a

This article explores asynchronous task execution in PHP to enhance web application responsiveness. It details methods like message queues, asynchronous frameworks (ReactPHP, Swoole), and background processes, emphasizing best practices for efficien

This article addresses PHP memory optimization. It details techniques like using appropriate data structures, avoiding unnecessary object creation, and employing efficient algorithms. Common memory leak sources (e.g., unclosed connections, global v


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
