Iterations are the successive repetitions in loops such as for, foreach or while. Questions with this tag are often concerned about how to best handle a collection of data.

learn more… | top users | synonyms

0
votes
1answer
19 views

Modifying a set while iterating over it

I would like to iterate over a set while I'm deleting items from it. There are similar questions for deleting one item at the time or for lists, but they do not work for my case. The code follows; I ...
1
vote
2answers
23 views

Different for-loop incremental value

I recently fiddled around with some for loops, and tried to get my head around some of the logical part of it. While i'm far beyond the level of loops at this point, I still tend to get a bit weird ...
1
vote
3answers
40 views

Theoretically iterating through memory addresses?

Just as the question asks: What would happen if you iterated through memory, or chose random memory addresses assigning random data? Surely there is some protection against this, but I'm not going ...
0
votes
3answers
35 views

Build an array using inject

I'm trying to build an array using inject. I expect consents to be an array of ParticipantConsent objects. Each ParticipantConsent object can :have_many ParticipantConsentSample objects. I expect ...
2
votes
1answer
35 views

Would this code fetch the elements every iteration?

Normally, I would write code like that. auto elements = get_elements(); for(auto i : elements) { // ... } I wonder if I it would make any performance difference to use the code below instead. ...
0
votes
7answers
41 views

Specific Order for “for-Loop” Incrementation

by standard I use for(int i=0; i<10; i++) {...do something...} But I often iterate throu Strings in C (char[]), exspecially by creating shift-loops for lcd-displays i have to store the first ...
-2
votes
2answers
55 views

Dividing a number and display a remainder in C#

Hi I am currently teaching myself C# using different books and online solutions, there is one exercise that i cant really get my head around. I had to divide a number by another number in C# using ...
0
votes
1answer
17 views

Batch Scripting iterating over files in a folder and extract for each one just the first line

I need to iterate over files contained in a folder and extract the first line for each file. I've tried to get this writing two batch file - the first one overate over files: FOR %%a in ...
0
votes
1answer
35 views

For each line of an ifstream, ofstream to a file. Garbage saved in them?

I'm trying to open an ifstream and then use the information in the input file, manipulate it and save the results to new .txt file for each line. I'm getting the right thing when I cout it, but ...
-2
votes
1answer
62 views

Solving for running time

Please can someone give me a direction as to how to solve the running time of: T(n) = nT(n-1) + O(n^2)? I know that T(n) = nT(n-1) => T(n) = O(n!) But how to I solve it with the extra O(n^2)? Thanks ...
4
votes
2answers
46 views

Implementing iterative solution of integral equation in Matlab

We have an equation similar to the Fredholm integral equation of second kind. To solve this equation we have been given an iterative solution that is guaranteed to converge for our specific ...
5
votes
2answers
66 views

What is the difference between these two array Iterations?

I'm studying PHP for an advanced exam. The practice test said that the first iteration is better than the second. I not figure out why. They both iterate the contents of an array just fine. // ...
3
votes
1answer
37 views

FindBug says this concurrent map doesnt need synchronized

So I've recently discovered FindBug, but it's making me think I don't know what I'm doing in a couple of places. This is one of them private Map<String, Object> map = new ...
1
vote
1answer
36 views

Numpy array comparison using nditer

The code below is giving me the correct answer, but only works when the arrays (plan and meas) are relatively small. When I try to run this over the arrays I actually need to compare (300x300 each), ...
0
votes
3answers
41 views

Ruby Change values of variables in array

I have an array made from variables, and I want to perform the same operation on each, and store the result in the original variable: (one, two, three) = [1, 2, 3] [one, two, three].map!{|e| e += 1} ...
1
vote
3answers
45 views

For Each Loop Iteration Count

Can we keep track of our iteration in our loop when we use a For Each? I like to use the For Each loops for looping through my objects but I cannot seem to find a way to keep an index of where I'm at ...
2
votes
4answers
116 views

C# and use of reflection [duplicate]

I came over this site (http://snipplr.com/view.php?codeview&id=17637), which illustrates use of reflection like this: public class Person { public int Age { get; set; } ...
0
votes
1answer
28 views

Javascript/jquery iterate async problems

I would like to iterate through a certain amount of pages, and populate them with content using ajax calls. The problem is, when I put the ajax calls inside the iteration function it has problems with ...
0
votes
2answers
41 views

Incorrect Output While Comparing Two Lists

I'm trying to compare two lists to generate a buy/sell signals. The first list is a list of prices, while the second list is the simple moving average for those prices. result = [590.0, 600.0, 590.0, ...
0
votes
0answers
13 views

Indirectly removing a list element while iterating over the list

My problem is basically this: I am getting exceptions because I am trying to remove a GUI element from a list of GUI elements that is being iterated over while the element's event handling function is ...
-1
votes
1answer
43 views

Recursive definition of a vector

I would like to define a list using a for loop and I need to do it using a function of the n-iterate. I have: Initialization In[176]: Subscript[y, 0] = {1, 2, 3} Out[180]: {1,2,3} The function: ...
1
vote
0answers
22 views

Attempting to Obtain Taxonomic Information from Biopython

I am attempting to alter a previous script that utilizes biopython to fetch information about a species phylum. This script was written to retrieve information one species at a time. I would like to ...
2
votes
1answer
33 views

Power Method - Non converging system

I am creating a risk parity process, where I need to use a Power method, it is an iterative process to find the eigen values of a system. The aim is to find to the weight in eaach asset that you are ...
0
votes
1answer
36 views

Summing iterations in MATLAB?

I have the following code: xRange=[1 length(delta1)]; yRange=[-80 0]; box11=(delta1>=xRange(1)) & (delta1 <= xRange(2)) & (Sref1 >= yRange(1)) & (Sref1 <= yRange(2)); ...
7
votes
3answers
166 views

Iterating speed and data type

Does the iteration speed through an array (or list,linkedList,Dictionary ect) depend on the data type? Example: An array of 10 bools v/s an array of 10 integers?
-1
votes
1answer
41 views

string formatting issue within an iterative loop

I am trying to reformat some data and save it to an output file in python. I .strip() each line from the original and append it to a list. I create a second list with the values I need to add to the ...
1
vote
1answer
19 views

numpy: iterate over nested array

Im trying to iterate over a nested (numpy) array using np.nditer(). Converted a nested list of ints to a nested numpy array. from numpy import mean, array, nditer nested_list = ...
0
votes
0answers
20 views

Lease mismatch LeaseExpiredException

I have seen some posts on this topic, but I could not figure the fix to my problem. I am using Hadoop version Hadoop 2.0.0-cdh4.2.0, and java version "1.7.0_09-icedtea". I am running a program that ...
1
vote
4answers
67 views

Is there an implicit keyword in this Ruby Array map code?

Is there a keyword I can use to explicitly tell the map function what the result of that particular iteration should be? Consider: a = [1,2,3,4,5] a.map do |element| element.to_s end In the ...
-3
votes
2answers
57 views

Caching value to variable or calling function to return value, which is cheaper in C++?

Which is cheaper(ram and cpu wise)? /* caching */ vector<T> vt; // ... populate the vector typedef vector<T>::size_type v_t_type ; vt_type size = vt.size(); for(vt_type i = 0; i < ...
1
vote
1answer
20 views

How to detect what class an object in an array is in JavaScript

I'm working on a highly object oriented project in JavaScript. I have an array[] of objects of different classes and I'm iterating through it and I want to check the class of the object at array[i]. ...
0
votes
3answers
51 views

Iteration through list with for

I'm quite a newbie in Python. Imagine I have a list [100, 200, 300, 301, 315, 345, 500]. I want to create a new list out of it, like [100, 200, 300, 500]. When I iterate through the list like that: ...
2
votes
1answer
31 views

Find changed or new rows in two lists of lists

I have two lists of lists which I call old_rows and new_rows. Each row is a list of exactly 30 items. There may be a very large (and unknown) number of rows in each list. The two lists may contain ...
0
votes
2answers
25 views

Working with couples on the List, ignoring order… some elegant way?

I have a list of elements (in java), let's say: List<Integer> elem = new ArrayList<>(); elem.add(1); elem.add(2); elem.add(3); elem.add(4); I want to iterate over each unique couple ...
0
votes
1answer
20 views

how to skip action on first value returned from a regex search?

the following: searches contents for spans of class blue grabs the text from the spans (using beautiful soup's get_text method) outputs the values on lines for each line, replaces some text does a ...
0
votes
1answer
16 views

LoadRunner picking up 3 values in xml response

Having a response to my request loooking like this: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ns3:hentDokumentForventningerResponse ...
0
votes
2answers
39 views

Calculating values by iterating through 2 nested lists at the same time

I'm trying to traverse a list in Python and get the average. For example, A = [[3,4,6], [7,9,13], 'New York Jets'] A[0] represents the wins A[1] represents the losses A[2] is the team I want to ...
0
votes
0answers
34 views

Searching a file for matches between two values and outputting search hits in Python

I am (attempting) to write a program that searches through a hex file for instances of a hex string between two values, eg. Between D4135B and D414AC, incrementing between the first value until the ...
0
votes
3answers
48 views

How to iterate over an array and remove elements in JavaScript

I have an array of elements and need to remove certain ones from it. The problem is that JavaScript doesn't seem to have a for each loop and if I use a for loop I run into problems with it basically ...
0
votes
3answers
77 views

php countering in javascript doesn't work

okay here is my code : var co = 0; var comp = ''; <?php $i = 0;?> while (co < <?php echo $db->count_rows(); ?>) { if ((parseInt(value) >= <?php echo $mfr[$i] ?>) ...
0
votes
3answers
51 views

Dividing a 2D array into boxes

I am having trouble with dividing a 2D array into boxes, like in Sudoku. I have an array of squares in my board object, and I want to divide them into 2x3 or 3x3 boxes, The box objects have a 1D array ...
1
vote
4answers
101 views

Iterate over C# dictionary's keys with index?

How do I iterate over a Dictionary's keys while maintaining the index of the key. What I've done is merge a foreach-loop with a local variable i which gets incremented by one for every round of the ...
0
votes
1answer
59 views

WHILE loop - read line of a file one by one — Not working the No. of times the file has lines in it

I'm using a "while" loop within a shell script (BASH) to read line of a file (one by one) -- "Fortunately", its not working the No. of times the file has lines in it. Here's the summary: $ cat ...
6
votes
5answers
223 views

What is the difference between iteration and traversing?

The past few weeks I have been learning about iterators. I still do not understand the main difference between iterating through a link list and traversing through one. I know that traversing means to ...
0
votes
3answers
35 views

list index out of range error while iterating in list length

I have the following code, which sortings_list consist of 2 items like sortings_list = ['code', 'name'] for i in xrange(0, len(sortings_list)): if sortings_list[i] == '-%s' % field: ...
0
votes
1answer
15 views

Iteration Level Permission

Is it possible to lock down the ability to assign the iteration to myself or a BA role? My product owner wants to be able to do that. I do not believe he should have ability to move work items from ...
-4
votes
1answer
62 views

Least minimal cleanest for-loop [closed]

I want to make the cleanest for-loop for my future coding projects. I don't want a for-loop like this: int a = 0; for (a = 0; a < 10; a++) { printf("result: i%", a); if (a == 9) a = -1; } I ...
0
votes
2answers
58 views

Printing Specific Pattern using for Loop in Java

i have to print specific pattern using Java for loop . Input will be 4 characters eg. a, b , c, d now what i have to print is aaaa aaab aaac aaad aaba abbb ...
1
vote
1answer
85 views

Using a hashmap to iterate over a list of hashmaps

I am using a hashmap to add similar values for each aclLine processed for (String aclLine : refinedFileContents){ if(Some condition) { staticVariablesMap.put("lineNumber", **lineNumber**); ...
1
vote
0answers
37 views

Recursive File listing stops after 2 files

I have the following code to list all files (in the direct folder and sub folders). $imagesDir = '../Stock_Images'; $di = new RecursiveDirectoryIterator($imagesDir); foreach (new ...

1 2 3 4 5 35