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

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

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

Disclosure: My content contains affiliate links.

43,236 questions

56,139 answers

573 users

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

1 Answer

0 votes
#include <stdio.h>

void swap(int* a, int* b) {
    int tmp = *a;
    *a = *b;
    *b = tmp;
}

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

int main()
{
    int arr[] = { 1, 2, 2, 0, 1, 1, 0, 2, 0, 1, 0, 0, 1 };

    int size = sizeof(arr) / sizeof(arr[0]);

    sort012Array(arr, size);

    for (int i = 0; i < size; i++)
        printf("%d ", arr[i]);

    return 0;
}




/*
run:

0 0 0 0 0 1 1 1 1 1 2 2 2

*/

 



answered Apr 18, 2023 by avibootz
edited Apr 19, 2023 by avibootz

Related questions

1 answer 179 views
1 answer 171 views
1 answer 188 views
1 answer 194 views
1 answer 194 views
1 answer 200 views
2 answers 221 views
221 views asked Apr 19, 2023 by avibootz
...