Tagged Questions
Loops are a type of control flow structure in programming in which a series of statements may be executed repeatedly until some condition is met.
232
votes
26answers
9k views
Why does this go into an infinite loop?
I'm a teacher, and yesterday a student wrote the following code:
public class Tests {
public static void main(String[] args) throws Exception {
int x = 0;
while(x<3) {
...
132
votes
8answers
62k views
Breaking out of nested loops in Java
I've got a nested loop construct like this:
for (Type type : types) {
for (Type t : types2) {
if (some condition) {
// Do something and break...
break; // ...
87
votes
14answers
4k views
Why are we using i as a counter in loops?
Why are we using
for (int i = 0 ; i < count ; i++){ }
Why the i?
Why not
for (int a = 0; a < count; a++){ }
I do it, you do it, everyone does it, but WHY?
*Edit
I found out an old ...
81
votes
4answers
28k views
Accessing the index in Python for loops
Does anyone know how to access the index itself for a list like this:
ints = [8,23,45,12,78]
When I loop through it using a for loop, how do I access the loop index, from 1 to 5 in this case?
68
votes
9answers
59k views
C# loop - break vs. continue
In a C# (feel free to answer for other languages) loop, what's the difference between break and continue as a means to leave the structure of the loop, and go to the next iteration?
Example:
...
58
votes
18answers
13k views
Should try…catch go inside or outside a loop?
I have a loop that looks something like this:
for(int i = 0; i < max; i++) {
String myString = ...;
float myNum = Float.parseFloat(myString);
myFloats[i] = myNum;
}
This is the main ...
57
votes
7answers
3k views
Optimizing away a “while(1);” in C++0x
Updated, see below!
I have heard and read that C++0x allows an compiler to print "Hello" for the following snippet
#include <iostream>
int main() {
while(1)
;
std::cout << ...
55
votes
8answers
27k views
Is there a “do … while” loop in Ruby?
I'm using this code to let the user enter in names while the program stores them in an array until they enter an empty string (they must press enter after each name):
people = []
info = 'a' # must ...
48
votes
8answers
4k views
Is recursion ever faster than looping?
I know that recursion is sometimes a lot cleaner than looping, and I'm not asking anything about when I should use recursion over iteration, I know there are lots of questions about that already.
...
47
votes
29answers
3k views
Why use a for loop instead of a while loop? [closed]
Possible Duplicates:
Iterate with for loop or while loop?
Loops in C - for() or while() - which is BEST?
When should one use a for loop instead of a while loop?
I think the following ...
47
votes
15answers
3k views
Is it faster to count down than it is to count up?
Our computer science teacher once said that for some reason it is more efficient to count down that count up.
For example if you need to use a FOR loop and the loop index is not used somewhere (like ...
44
votes
8answers
2k views
In a “for” statement, should I use `!=` or `<`?
I've seen both of these two for statements:
for(i=0;i<10;i++)
for(i=0;i!=10;i++)
I know they all stop when i reaches 10 , but it seems better to use the second one (I heard).
What is the ...
43
votes
10answers
15k views
Calling remove in foreach loop in Java
In Java, is it legal to call remove on a collection when iterating through the collection using a foreach loop? For instance:
List<String> names = ....
for (String name : names) {
// Do ...
41
votes
16answers
15k views
Difference between declaring variables before or in loop?
I have always wondered if, in general, declaring a throw-away variable before a loop, as opposed to repeatedly inside the loop, makes any (performance) difference?
A (quite pointless example) in ...
39
votes
4answers
701 views
Why is 'for(var item in list)' with arrays considered bad practice in JavaScript?
Given a simple zero based, numerically indexed array:
var list = ['Foo', 'Bar', 'Baz'];
Many times, I have noticed that when someone suggests looping through variables in an array like this:
...
39
votes
5answers
24k views
Syntax for a single-line BASH infinite while loop
Having trouble coming up with the right combination of semicolons and/or braces. I'd like to do this, but as a one-liner from the command line:
while [ 1 ]
do
foo
sleep 2
done
38
votes
9answers
2k views
why is memcpy/memmove faster than pointer increments?
I am copying N bytes from pSrc to pDest. This can be done in a single loop:
for (int i = 0; i < N; i++)
*pDest++ = *pSrc++
Why is this slower than memcpy or memmove? What tricks do they use ...
38
votes
6answers
4k views
Javascript closure inside loops - simple practical example
Closures are one of those things which has been discussed a lot on SO, but this situation pops up a lot for me and I'm always left scratching my head what to do.
var funcs = {};
for (var i = 0; i ...
37
votes
6answers
2k views
Using “double” as counter variables in loops
In a book I am currently reading, there is this excerpt:
You can also use a floating-point
value as a loop counter. Here's an
example of a for loop with this kind
of counter:
double ...
36
votes
27answers
7k views
Useful alternative control structures?
Sometimes when I am programming, I find that some particular control structure would be very useful to me, but is not directly available in my programming language. I think my most common desire is ...
33
votes
11answers
36k views
How can I escape white space in a bash loop list?
I have a bash shell script that loops through all child directories (but not files) of a certain directory. The problem is that some of the directory names contain spaces.
Here are the contents of ...
30
votes
13answers
1k views
Is “map” a loop?
While answering this question, I came to realize that I was not sure whether Perl's map can be considered a loop or not?
On one hand, it quacks/walks like a loop (does O(n) work, can be easily ...
30
votes
8answers
5k views
Is it possible to implement a Python for range loop without an iterator variable?
Is is possible to do this;
for i in range(some_number):
#do something
without the i? If you just want to do something x amount of times and don't need the iterator.
28
votes
7answers
13k views
Traverse a list in reverse order in Python
So I can start from len(collection) and end in collection[0].
EDIT: Sorry, I forgot to mention I also want to be able to access the loop index.
28
votes
9answers
8k views
Is there a way to access an iteration-counter in Java's for-each loop?
Is there a way in Java's for-each loop
for(String s : stringArray) {
doSomethingWith(s);
}
to find out how often the loop has already been processed?
Aside from using using the old and ...
27
votes
18answers
2k views
Why should I use foreach instead of for (int i=0; i<length; i++) in loops?
It seems like the cool way of looping in C# and Java is to use foreach instead of C style for loops.
Is there a reason why I should prefer this way over the C style?
I'm particularly interested ...
26
votes
8answers
3k views
JavaScript - Are loops really faster in reverse…?
I've heard this quite a few times. Are JavaScript loops really faster when counting backward? If so, why? I've seen a few test suite examples showing that reversed loops are quicker, but I can't find ...
25
votes
12answers
548 views
looping in two directions
hey I'm looking for are clean solution to this problem:
i start the loop with i = 0 in the second loop step the i = 1, then i = -1 and then i = 2 ect.
how to programm this with a for loop in a ...
25
votes
5answers
41k views
Counter inside xsl:for-each loop
How to get a counter inside xsl:for-each loop that would reflect the number of current element processed.
For example my source XML is
<books>
<book>
<title>The Unbearable ...
24
votes
15answers
6k views
How to break out of a loop from inside a switch?
I'm writing some code that looks like this:
while(true) {
switch(msg->state) {
case MSGTYPE: // ...
break;
// ... more stuff ...
case DONE:
break; // **HERE, I ...
24
votes
11answers
6k views
Is there any overhead to declaring a variable within a loop? (C++)
I am just wondering if there would be any loss of speed or efficiency if you did something like this:
int i = 0;
while(i < 100)
{
int var = 4;
i++;
}
which declares int var one hundred ...
24
votes
12answers
2k views
What is the best way to do loops in JavaScript
I have stumbled into several methods of looping in JavaScript, what I like the most is:
for(var i = 0; i < a.length; i++){
var element = a[i];
}
But as tested here ...
23
votes
8answers
1k views
Why is this Loop Working Infinitely
This is a simple while loop in C# but it is working infinitely.
int count = 1;
while (count < 10)
{
count = count++;
}
Why is this so?
23
votes
16answers
782 views
Best Loop Idiom for special casing the last element
I run into this case a lot of times when doing simple text processing and print statements where I am looping over a collection and I want to special case the last element (for example every normal ...
23
votes
42answers
11k views
Display numbers from 1 to 100 without loops or conditions
Is there a way to print numbers from 1 to 100 without using any loops or conditions like "if"?
We can easily do using recursion but that again has an if condition. Is there a way to do without using ...
23
votes
13answers
2k views
foreach vs someList.Foreach(){}
There are apparently many ways to iterate over a collection. Curious if there are any differences, or why you'd use one way over the other.
First type:
List<string> someList = <some way to ...
22
votes
2answers
280 views
Getting an optimization report from GCC
I would like to know if there is an option I can use with GCC to get a detailed report on the optimization actually chosen and performed by the compiler. This is possible with the Intel C compiler ...
21
votes
9answers
764 views
Get out of multiple loops? [closed]
Possible Duplicate:
Breaking out of a nested loop
I have this code
foreach (___)
{
foreach (___)
{
foreach (___)
{
if (condition)
{
...
21
votes
6answers
10k views
How do I skip an iteration of a `foreach` loop in C#?
In Perl I can skip a foreach (or any loop) iteration with a next; command.
Is there a way to skip over an iteration and jump to the next loop in C#?
foreach (int number in numbers)
{
if ...
21
votes
12answers
6k views
What is the difference between range and xrange?
Apparently xrange is faster but I have no idea why it's faster (and no proof besides the anecdotal so far that it is faster) or what besides that is different about
for i in range(0, 20):
for i in ...
21
votes
11answers
77k views
Is there a way to loop through a table variable in TSQL without using a cursor?
Let's say I have the following simple table variable:
declare @databases table
(
DatabaseID int,
Name varchar(15),
Server varchar(15)
)
-- insert a bunch rows into ...
20
votes
3answers
25k views
Python loop counter in a for loop
In my example code below, is the counter = 0 really required, or is there a better, more Python, way to get access to a loop counter? I saw a few PEPs related to loop counters, but they were either ...
19
votes
8answers
8k views
How do I loop through a date range?
I'm not even sure how to do this without using some horrible for loop/counter type solution. Here's the problem:
I'm given two dates, a start date and an end date and on a specified interval I need ...
18
votes
3answers
160 views
Why is a `switch` considered a looping structure for the purposes of `continue`?
I just got bit by assuming the following:
foreach ($arr as $key => $value) {
switch($key) {
// ... some other cases
default:
continue;
// ^== assumption: move on to the next ...
18
votes
14answers
1k views
Can my loop be optimized any more?
Below is my innermost loop that's run several thousand times, with input sizes of 20 - 1000 or more. This piece of code takes up 99 - 99.5% of execution time. Is there anything I can do to help ...
18
votes
22answers
4k views
Identifying last loop when using for each
I want to do something different with the last loop iteration when performing 'foreach' on an object. I'm using Ruby but the same goes for C#, Java etc.
list = ['A','B','C']
list.each{|i|
...
18
votes
9answers
25k views
How to find the foreach index
Is it possible to find the foreach index?
in a "for" loop as follows:
for($i = 0; $i < 10; ++$i){
echo $i.' ';
}
$i will give you the index.
Do I have to use the for loop or is there some ...
17
votes
10answers
705 views
C - have a simple loop that does arithmetic calculation; profiler shows this is a bottleneck. How to speed it up?
My first post here. A great site and resource.
I did search a bit and looked at the questions with similar titles, but couldn't find something specifically about this.
I'm trying to remove any ...
17
votes
5answers
544 views
how to write this loop better?
i have a code that does something like this:
while (doorIsLocked()) {
knockOnDoor();
}
openDoor();
but i want to be polite and always knock on the door before i open it.
i can write something ...
17
votes
3answers
6k views
Null check in an enhanced for loop
What is the best way to guard against null in a for loop in Java?
This seems ugly :
if (someList != null) {
for (Object object : someList) {
// do whatever
}
}
Or
if (someList == ...