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

51,819 answers

573 users

How to sort a list of 0s, 1s and 2s in Dart

1 Answer

0 votes
import 'dart:io';

void sort012List(List<int> lst) {
    var lo = 0;
    var curr = 0;
    var hi = lst.length - 1;
    
    while (curr <= hi) {
        switch (lst[curr]) {
            case 0:
                var tmp = lst[lo];
                lst[lo] = lst[curr];
                lst[curr] = tmp;
                lo++;
                curr++;
                break;
            case 1:
                curr++;
                break;
            case 2:
                var tmp = lst[curr];
                lst[curr] = lst[hi];
                lst[hi] = tmp;
                hi--;
                break;
        }
    }
}


void main() {
    List<int> lst = [1, 2, 2, 0, 1, 1, 0, 2, 0, 1, 0, 0, 1];

    sort012List(lst);

    for (var  i = 0; i < lst.length; i++) {
        stdout.write((lst[i]).toString() + " ");
    }
}





/*
run:

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

*/

 



answered Apr 20, 2023 by avibootz

Related questions

1 answer 119 views
1 answer 127 views
1 answer 103 views
1 answer 117 views
1 answer 123 views
1 answer 128 views
1 answer 128 views
...