Tagged Questions
A for loop is a control structure in many programming languages that iterates over a range. Depending on the language, this might be a loop over a range of integers, a range of iterators, etc.
71
votes
8answers
10k views
How to optimize for-comprehensions and loops in Scala?
So Scala is supposed to be as fast as Java. I'm revisiting in Scala some Project Euler problems that I originally tackled in Java. Specifically Problem 5 : "What is the smallest positive number that ...
59
votes
11answers
35k views
What is the difference between ++i and i++
In C, what is the difference between using ++i and i++. And which should be used in the incrementation block of a for loop?
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 ...
42
votes
8answers
2k views
Enhanced FOR loops in C++
I am switching from Java to C++ and I was wondering whether C++ contains the enhanced for loops that I used in java, in example:
int[] numbers = {1,2,3,4,5,6,7,8,9,10};
for (int item : numbers) {
...
39
votes
7answers
21k views
Loop through array in JavaScript
In Java you can use a for() loop to go through objects in an array like so:
String[] myStringArray = {"Hello","World"};
for(String s : myStringArray)
{
//Do something
}
can you do the same in ...
37
votes
39answers
15k views
In .NET which loop runs faster for or foreach
In c#/VB.NET/.NET which loop runs faster for or foreach?
Ever since I read that for loop works faster than foreach a long time ago I assumed it stood true for all collections, generic collection all ...
31
votes
29answers
2k views
format of for loops
i'd just like to get some thoughts on the best way to do for loops (in c based languages).
all over the web code samples have for loops which look like this
for(int i = 0; i < 5; i++)
while i ...
31
votes
7answers
10k views
Elements order in a “for (… in …)” loop
Does the "for…in" loop in Javascript loop through the hashtables/elements in the order they are declared? Is there a browser which doesn't do it in order?
The object I wish to use will be declared ...
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
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 ...
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 ...
26
votes
2answers
19k views
Iterating a JavaScript object's properties using jQuery
Is there a jQuery way to perform iteration over an object's members, such as in:
for (var member in obj) {
...
}
I just don't like this for sticking out from amongst my lovely ...
25
votes
19answers
4k views
It it a bad practice to use break in a for loop? [closed]
Possible Duplicate:
Break statements In the real world
Hi,
Is it a bad practice to use break statement inside a for loop?
Say, I am searching for an value in an array. Compare inside a ...
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
6answers
17k views
What is the full “for” loop syntax in C (and others in case they are compatible)?
I have seen some very weird for loops when reading other people's code. I have been trying to search for a full syntax explanation for the for loop in C but it is very hard because the word "for" ...
24
votes
8answers
2k views
Endless for loop
I have the following loop:
for (byte i = 0 ; i < 128; i++) {
System.out.println(i + 1 + " " + name);
}
When I execute my programm it prints all numbers from -128 to 127 in an infinite loop. ...
23
votes
4answers
481 views
Erroneous for-loops in Java?
I observed erroneous behaviour running the following java-code:
public class Prototype {
public static void main(String[] args) {
final int start = Integer.MAX_VALUE/2;
final int end = ...
23
votes
18answers
2k views
How to replace for-loops with a functional statement in C#?
A colleague once said that God is killing a kitten every time I write a for-loop.
When asked how to avoid for-loops, his answer was to use a functional language. However, if you are stuck with a ...
22
votes
16answers
3k views
For vs. while in C programming?
There are 3 loops in C: for, while, do-while. What's the difference between them?
For example, it seems nearly all while statement can be replaced by for statement, right? Then, what's the advantage ...
22
votes
12answers
11k views
Breaking out of a nested loop
If I have a for loop which is nested within another, how can I efficiently come out of both loops (inner and outer) in the quickest possible way?
I don't want to have to use a boolean and then have ...
22
votes
9answers
9k views
Is there a performance difference between a for loop and a for-each loop?
What, if any, is the performance difference between the following two loops?
for(Object o: objectArrayList){
o.DoSomthing();
}
and
for(int i=0; i<objectArrayList.size(); i++){
...
20
votes
7answers
569 views
Should I use std::for_each?
I'm always trying to learn more about the languages I use (different styles, frameworks, patterns, etc). I've noticed that I never use std::for_each so I thought that perhaps I should start. The goal ...
20
votes
7answers
5k views
How do I break out of a loop in Scala?
For Problem 4 of Project Euler
How do I break out a loop?
var largest=0
for(i<-999 to 1 by -1) {
for (j<-i to 1 by -1) {
val product=i*j
if (largest>product)
// I want to break out ...
20
votes
9answers
5k views
Can I use break to exit multiple nested for loops?
Is it proper to use the break function to exit several nested for loops? If so, how would you go about doing this? Can you also control how many loops the break exits?
20
votes
3answers
24k 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 ...
18
votes
16answers
2k views
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 == ...
17
votes
7answers
1k views
Can all 'for' loops be replaced with a LINQ statement?
Is it possible to write the following 'foreach' as a LINQ statement, and I guess the more general question can any for loop be replaced by a LINQ statement.
I'm not interested in any potential ...
16
votes
15answers
4k views
Iterate with for loop or while loop?
I often see code like:
Iterator i = list.iterator();
while(i.hasNext()) {
...
}
but I write that (when Java 1.5 isn't available or for each can't be used) as:
for(Iterator i = list.iterator(); ...
15
votes
5answers
687 views
Why is an integer always used as the controlling variable in a for loop?
There are often times when you know for a fact that your loop will never run more than x number of times where x can be represented by byte or a short, basically a datatype smaller than int.
Why do ...
15
votes
6answers
604 views
Simple for loop not working
I've just started learning programming. I'm studying for loops but
this program does not work as expected. I want to break the loop when
$a is equal to 3 so that I get the output 1 2 but I get 3 as ...
15
votes
8answers
4k views
What's the difference between iterating over a file with foreach or while in Perl?
I have a filehandle FILE in Perl, and I want to iterate over all the lines in the file. Is there a difference between the following?
while (<FILE>) {
# do something
}
and
foreach ...
14
votes
1answer
192 views
Is there a Pythonic way to close over a loop variable?
I just ran across Eric Lippert's Closing over the loop variable considered harmful via SO, and, after experimenting, realized that the same problem exists (and is even harder to get around) in Python.
...
14
votes
5answers
265 views
Can I declare variables of different types in the initialization of a for loop?
Why does not this C++ code compile under VS2010:
for ( int a = 0, short b = 0; a < 10; ++a, ++b ) {}
while this one does:
short b = 0;
for ( int a = 0; a < 10; ++a, ++b ) {}
Is the ...
14
votes
7answers
530 views
Whats possible in a for loop
So today I went to an interview and one of the questions was the following (C# context).
//Print the output for the following code:
for (int i = 10, j = 0; j <= 10; j++, i--)
{
if (i > j)
...
14
votes
11answers
5k views
In python is there an easier way to write 6 nested for loops?
This problem has been getting at me for a while now. Is there an easier way to write nested for loops in python? For example if my code went something like this:
for y in range(3):
for x in ...
14
votes
9answers
5k views
Is it possible to do a For…Each Loop Backwards?
I don't believe this is possible by conventional methods, but something like this verbose code:
For Each s As String In myStringList Step -1
//' Do stuff here
Next
I will probably have to ...
14
votes
12answers
1k views
Does the last element in a loop deserve a separate treatment?
When reviewing, I sometimes encounter this kind of loop:
i = begin
while ( i != end ) {
// ... do stuff
if ( i == end-1 (the one-but-last element) ) {
... do other stuff
}
...
12
votes
5answers
179 views
r: for loop operation with nested indices runs super slow
I have an operation I'd like to run for each row of a data frame, changing one column. I'm an apply/ddply/sqldf man, but I'll use loops when they make sense, and I think this is one of those times. ...
12
votes
2answers
160 views
How to make my custom type to work with “range-based for loops”?
Like many people these days I've been trying the different features that C+11 brings. One of my favorites is the "range-based for loops".
I understand that:
for(Type& v : a) { ... }
Is ...
12
votes
3answers
614 views
For loop goes out of range
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
...
12
votes
6answers
1k views
pythonic way to do something N times
Hey! Every day I love python more and more.
Today, I was writing some code like:
for i in xrange(N):
do_something()
I had to do something N times. But each time didn't depend on the value of ...
12
votes
9answers
6k views
Java: What does the colon (:) operator do?
I would look it up myself, but I don't even know what it's called. Would anyone mind explaining what it does? Thanks!
EDIT: I didn't know there were multiple times the : appeared. What does it do in ...
12
votes
5answers
365 views
12
votes
6answers
5k views
for loop to iterate over enum in Java?
I have an enum in Java for the cardinal & intermediate directions:
public enum Direction {
NORTH,
NORTHEAST,
EAST,
SOUTHEAST,
SOUTH,
SOUTHWEST,
WEST,
NORTHWEST
}
How can ...
12
votes
12answers
2k views
Thoughts on foreach with Enumerable.Range vs traditional for loop
In C# 3.0, I'm liking this style:
// Write the numbers 1 thru 7
foreach( int index in Enumerable.Range( 1, 7 ) )
{
Console.WriteLine( index );
}
over the traditional for loop:
// Write the ...
11
votes
4answers
161 views
For-loop and DateTime Problem
I'm trying to make use for on a DateTime like this:
for (DateTime d = _BookedCheckIn; d <= _BookedCheckOut; d.AddDays(1))
{
// ...
}
But the problem is that d does not increase. Does anyone ...
11
votes
3answers
273 views
Dealing with repetitive tasks in R
I often find myself having to perform repetitive tasks in R. It gets extremely frustrating having to constantly run the same function on one or more data structures over and over again.
For example, ...
11
votes
2answers
203 views
Getter with side effect
I create a class whose objects are initialized with
a bunch of XML code. The class has the ability to extract various parameters out of that XML and to cache them inside the object state variables. ...
11
votes
3answers
363 views
for-loop optimization - needed or not?
Do I have to optimize my FOR-loops like below or the compiler will do that for me?
//this is slow, right?
for (int i = 0; i < menuItem.DropDownItems.Count; i++)
{
...
}
//this should be much ...