show/hide this revision's text 2 added 5 characters in body

You are guaranteed that the majority is strictly more than half the number of elements. At each step, maintain a best-estimate on the majority item, together with a count of the number of times it has been "voted" for, minus the number of times it has been "voted" against. When the vote reaches 0, then you change to a new guess. The majority element is guaranteed to be the last one standing, and the "count" is the number of times it appears in the array in excess of the majority.

   unsigned get_majority(const unsigned value[], int unsigned N) {
      unsigned guess, i;
      unsigned count_guess = 0;
      for (i = 0; i < N; ++i) {
        if (count_guess == 0) {
          guess = value[i];
          ++count_guess;
        } else {
          count_guess += (value[i] == guess) ? 1 : -1;
        }
      }
      return guess;
   }
show/hide this revision's text 1

You are guaranteed that the majority is strictly more than half the number of elements. At each step, maintain a best-estimate on the majority item, together with a count of the number of times it has been "voted" for, minus the number of times it has been "voted" against. When the vote reaches 0, then you change to a new guess. The majority element is guaranteed to be the last one standing, and the "count" is the number of times it appears in the array in excess of the majority.

   unsigned get_majority(const unsigned value[], int N) {
      unsigned guess, i;
      unsigned count_guess = 0;
      for (i = 0; i < N; ++i) {
        if (count_guess == 0) {
          guess = value[i];
          ++count_guess;
        } else {
          count_guess += (value[i] == guess) ? 1 : -1;
        }
      }
      return guess;
   }