Next exercise from codeLab that I am getting logical error indication for.
What am I missing? Thanks in advance.
You are given an array x of string elements along with an int variable n that contains the number of elements in the array. You are also given a string variable mode that has been declared. Assign to mode the mode value of the array. (Assume there are no "ties".)
NOTE: The mode is the value that occurs most frequently.
EXAMPLE: Given "msft" "appl" "msft" "csco" "ibm" "csco" "msft", the mode is "msft" because it appears the most number of times in the list.
This is my code:
int countPrev=0;
for (int j=0; j<n; j++) {
if (x[0]==x[j])
countPrev++;
}
int count=0;
for (int i=1; i<n; i++) {
for (int j=1; j<n; j++) {
if (x[i]==x[j])
count++;
}
if (countPrev>count)
mode=x[i-1];
else
mode=x[i];
countPrev=count;
}