Advertisement

1 - 10 of 470 containing alltags:("iterating") (0.001 seconds)
Using MSVC 5 w/ MFC, how does one incorporate a MinimizeAll method for a MDI implmentation? The more detailed question is how to iterate on MDI children and guarantee you will hit them all? This w...
Zones: C++Date Answered: 06/18/1998 Grade: A Views: 0
I need to iterate Through the subfolders of a given folder and output there contents in a listbox. eg. given: C:\Windows Then: Output all of its files in all of its folders in a listbox.
Zones: Visual BasicDate Answered: 01/11/2000 Grade: C Views: 0
Is it possible to use an interator with a priority queue? If so, how do you declare and use it? I want to check and make sure that an item has not already been inserted into the queue without unloa...
Zones: C++, Microsoft Visual C++Date Answered: 08/08/2000 Grade: B Views: 0
I want a collection of objects that I can iterate in 3- 4 different preset order. eg. order 1 (3-7-8-1-...)     order 2 (1-6-2-3-...)       ..... and each order does not necessary contain all the e...
Zones: C++, Microsoft Visual C++Date Answered: 04/06/2002 Grade: B Views: 0
I need to create an iterator class for a simple integer linked list.  (Not using the STL version) The problem I'm having is assigning a Listnode pointer to an Iterator pointer. Can someone help...
Zones: C++, Microsoft Visual C++Date Answered: 12/13/2000 Grade: B Views: 4
I'm wondering how, using two GregorianCalendar objects, you can find how many days are between the two (other than iterating or doing much of a calculation -- i.e. is there a method or something?
Zones: JavaDate Answered: 04/17/2002 Grade: A Views: 0
I'm working on a program that asks this recursive function below to be rewritten recursively.   int XToTheN (int x, int n) {   if (n == 0)      return 1;   else      return (x * XToTheN(x, ...
Zones: C++Date Answered: 02/26/2003 Grade: A Views: 0
I`ve got an array - int numbers[]={1,2,3,4,5,6,7,8,9,0}; int* ptr=&numbers; // we point to the first element And now I want this array to be iterated with "ptr" pointer, in the following man...
Zones: C++, Microsoft Visual C++Date Answered: 02/07/2003 Grade: A Views: 0
I have something like this: foreach($array as $key=>$value) {    switch($key) {       case 1:          //do stuff          break;       case 2:          //do more stuff          break     ...
Zones: PHPDate Answered: 03/04/2003 Grade: C Views: 0