Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to segregate even and odd numbers of an array (even on left and odd on right) in PHP

1 Answer

0 votes
function swap(&$arr, $i, $j) {
	$temp = $arr[$i];
	$arr[$i] = $arr[$j];
	$arr[$j] = $temp;
}

function segregateElement(&$arr) {
	$size = count($arr);
	
	$j = 0;
	for ($i = 0; $i < $size; $i++) {
		if ($arr[$i] % 2 == 0) {
			swap($arr, $j, $i);
			$j++;
		}
	}
}

$arr = array(1, 3, 4, 5, 7, 10, 13, 6, 9, 8);

segregateElement($arr);

echo implode(" ", $arr);



/*
run:
    
4 10 6 8 7 3 13 1 9 5
    
*/

 



answered Nov 20, 2021 by avibootz
...