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

51,823 answers

573 users

How to sort an array of 0s, 1s and 2s in C#

2 Answers

0 votes
using System;

class Program
{
    public static int swap(params int[] args) {
		return args[0];
	}

	private static void sort012Array(int[] arr) {
		int lo = 0;
		int curr = 0;
		int hi = arr.Length - 1;

		while (curr <= hi) {
			switch (arr[curr]) {
				case 0:
					arr[lo] = swap(arr[curr], arr[curr] = arr[lo]);
					lo++;
					curr++;
					break;
				case 1:
					curr++;
					break;
				case 2:
					arr[curr] = swap(arr[hi], arr[hi] = arr[curr]);
					hi--;
				    break;
			}
		}
	}
	
    static void Main() {
        int[] arr = new int[] {1, 2, 2, 0, 1, 1, 0, 2, 0, 1, 0, 0, 1};

		sort012Array(arr);

		for (int i = 0; i < arr.Length; i++) {
			Console.Write(arr[i] + " ");
		}
    }
}





/*
run:
  
0 0 0 0 0 1 1 1 1 1 2 2 2 
  
*/

 



answered Apr 19, 2023 by avibootz
0 votes
using System;

class Program
{
	static void Swap<T> (ref T a, ref T b) {
        T temp = a;
        a = b;
        b = temp;
    }

	private static void sort012Array(int[] arr) {
		int lo = 0;
		int curr = 0;
		int hi = arr.Length - 1;

		while (curr <= hi) {
			switch (arr[curr]) {
				case 0:
					Swap(ref arr[curr], ref arr[lo]);
					lo++;
					curr++;
					break;
				case 1:
					curr++;
					break;
				case 2:
					Swap(ref arr[hi], ref arr[curr]);
					hi--;
				    break;
			}
		}
	}
	
    static void Main() {
        int[] arr = new int[] {1, 2, 2, 0, 1, 1, 0, 2, 0, 1, 0, 0, 1};

		sort012Array(arr);

		for (int i = 0; i < arr.Length; i++) {
			Console.Write(arr[i] + " ");
		}
    }
}





/*
run:
  
0 0 0 0 0 1 1 1 1 1 2 2 2 
  
*/

 



answered Apr 19, 2023 by avibootz

Related questions

1 answer 104 views
1 answer 118 views
1 answer 124 views
1 answer 129 views
1 answer 129 views
1 answer 104 views
1 answer 112 views
...