Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have an array and I need to display how many times the number '12' is created. I'm using a function to go about this. What resources should I look into to find how to exactly tease out this one number and display how many times it is in the array/list? Any help would be greatly appreciated.

share|improve this question
2  
Your other question gave you the way to iterate through the array, examining numbers. Surely you can think a little bit about how to modify that logic to answer this question? – Ken White Nov 6 '09 at 21:39
yeah, i guess i need to create a variable which equals 12. then have my counter work with the variable to record how many times it was created.... – HollerTrain Nov 6 '09 at 21:41
By not trying to figure it out yourself, you're only hurting yourself. You won't learn how to do things on your own, and will keep your skills very limited. (Actually, you're hurting more than yourself; if you don't learn any skills but get a job anyway, you're going to write really bad code that someone else will get stuck trying to maintain.) Please try to figure things out first, and then post a question if you can't (including what you've already tried so we know you did so). – Ken White Nov 6 '09 at 21:44

5 Answers

up vote 2 down vote accepted

Simply create a counter variable, and examine each element in the array in a loop, incrementing the counter variable every time an element is equal to 12.

share|improve this answer

You can do it by walking through the array, while keeping a tally.

The tally starts at 0, and every time you reach the number you want to track, add one to it. When you're done, the tally contains the number of times the number appeared.

Your function definition would probably look something like this:

int count_elements(int pElement, int pArray[], size_t pSize);
share|improve this answer
1  
+1 for showing a generalized version. But please change int pSize to size_t pSize. – Chris Lutz Nov 6 '09 at 21:45
Oops, indeed​​​. – GManNickG Nov 6 '09 at 21:47

If you have a plain C-array, you have to iterate over all elements in a loop and count yourself with a variable.

share|improve this answer
int arr[20];
int twelves = 0;
int i;

/* fill here your array */


/* I assume your array is fully filled, otherwise change the sizeof to the real length */
for(i = 0; i < sizeof(arr)/sizeof(int);++i) {
  if(arr[i] == 12) ++twelves;
}

After this, the variable twelves will contain the number of twelves in the array.

share|improve this answer
3  
Don't give him the answer, people don't learn that way. – GManNickG Nov 6 '09 at 21:42
1  
The terminating condition in the for loop should be i < sizeof(arr) / sizeof(int) – Charles Salvia Nov 6 '09 at 21:42
Thanks, changed accordingly – Roalt Nov 6 '09 at 21:47
1  
I don't think he will get his master thesis by my answer, but maybe he learns something of it. – Roalt Nov 6 '09 at 21:48

Iterate over the array with a loop, incrementing a counter as you go.

int counter = 0;

for(int index = 0; index < myArray.length; index++)
{
    if (myArray[index] == 12)
        counter++;
}

printf(counter);
share|improve this answer
he said c as tag, not java – Roalt Nov 6 '09 at 21:41
3  
And even so, how do you think giving somebody the answer to a homework question is going to help them? – GManNickG Nov 6 '09 at 21:43
1  
That's very kind of you, Jason. (Hint: sarcasm. That's very rude.) Also, you clearly don't actually know C. – GManNickG Nov 6 '09 at 21:46
1  
Your code is some bizarre hybrid of C and Java. You have a printf function (which incorrectly takes an integer), along with a .length member of the array. – Charles Salvia Nov 6 '09 at 21:51
1  
Well now who's looking for an exact answer? Psuedo-code is a great teaching tool! And the printf was just a smart-ass edit because somebody complained about my java code. – uosɐſ Nov 6 '09 at 21:54
show 10 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.