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,845 questions

51,766 answers

573 users

How to move all zeroes to end of array in Swift

1 Answer

0 votes
import Foundation

class Array
{
	func moveZeroToEnd(_ arr: inout[Int])	{
		let size: Int = arr.count;
		var i: Int = 0;
		var j: Int = 0;
		while (i < size) {
		    if (arr[i] > 0) {
                let tmp: Int  = arr[i];
                arr[i] = arr[j];
                arr[j] = tmp;
                j += 1;
            }
            i += 1;
        }
	}
	func display(_ arr: [Int]) {
		let size: Int = arr.count;
		var i: Int = 0;
		
		while (i < size) {
			print(arr[i], terminator: " ");
			i += 1;
		}
	}
	static func main()
	{
		let obj: Array = Array();
		var arr: [Int] = [0, 8, 0, 0, 0, 7, 15, 0, 0, 4, 6, 9];

		obj.moveZeroToEnd(&arr);

		obj.display(arr);
	}
}
Array.main();



 
/*
run:
 
8 7 15 4 6 9 0 0 0 0 0 0
 
*/

 



answered Nov 28, 2021 by avibootz

Related questions

1 answer 172 views
172 views asked Nov 28, 2021 by avibootz
1 answer 194 views
1 answer 167 views
1 answer 182 views
1 answer 135 views
135 views asked Nov 27, 2021 by avibootz
1 answer 123 views
1 answer 142 views
...