Tagged Questions
The nested-loops tag has no wiki summary.
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 ...
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 ...
13
votes
14answers
642 views
How to terminate outer loop in nested loops?
What is the best way to terminate all nested loops in the example below. Once the if statement is true, I want to terminate the outer for statement (with I). In the other words I need the whole loop ...
11
votes
4answers
352 views
Is this a valid (ab)use of lambda expressions?
Like we all know, it's not that easy to break from a nested loop out of an outer loop without either:
a goto (Example code.)
another condition check in the outer loop (Example code.)
putting both ...
10
votes
5answers
243 views
Pythonic shortcut for doubly nested for loops?
Consider if I had a function that took a tuple argument (x,y), where x was in the range(X), and y in the range(Y), the normal way of doing it would be:
for x in range(X):
for y in range(Y):
...
10
votes
9answers
446 views
C#: Nested conditionals vs continue statement
In using ReSharper recently, it is suggesting I reduce nesting in certain places by inverting if conditions and using the continue statements.
nested conditionals:
foreach(....)
{
...
7
votes
3answers
153 views
How to determine the sum of a group of integers without using recursion
This is my first post on Stack Overflow, and I'm hoping that it'll be a good one.
This is a problem that I thought up myself, and now I'm a bit embarrassed to say, but it's beating the living ...
7
votes
1answer
133 views
Can you help me with a symbol-state table and nested switch? Exercise from Illustrating C- Donald Alcock
OK, first thank you for taking the time to read my post!! (^o^)/
And before I put the whole problem a little of context:
I am learning by myself 'C' and found the book "Illustrating C" which I´m ...
6
votes
4answers
294 views
My iteration is taking forever. Looking for a better way
Given a set of sixteen letters and an English dictionary file, need to find a solution where those sixteen letters can fit into a 4x4 grid so that a valid word can be read across each row, and down ...
6
votes
3answers
111 views
Better equivalent of this crazy nested python for loop
for a in map:
for b in map[a]:
for c in map[b]:
for d in map[c]:
for e in map[d]:
print a+b+c+d+e
The above code is used to create all ...
6
votes
12answers
208 views
Break nested loops
Can someone tell me how to break the main loop when I have nested loops?
Example*:
/*Main loop*/
for(int y = 0; y < 100; y+=10)
{
/*Sub loop*/
for (int x = 0; x < 100; x += 10)
{
...
6
votes
5answers
238 views
How to exit two nested loops
I have been using java for quite some time, yet my education in loops is somewhat lacking. I know how to create every loop that exists in java and break out of the loops as well. However, I've ...
6
votes
8answers
448 views
How do I design an int loop that starts with 1 and ends with 0 (1,2,3,4,5,6,7,8,9,0)
My problem is to use nested for loops in order to create this output:
| | | | | |
123456789012345678901234567890123456789012345678901234567890
I ...
6
votes
15answers
2k views
Is it possible to exit a for before time in C++, if an ending condition is reached?
I want to know if it is possible to end a for loop in C++ when an ending condition (different from the reacheing right number of iterations) is verified. For instance:
for (int i = 0; i < maxi; ...
5
votes
3answers
149 views
implementing multi-level “iterator” in PHP
I'm trying to create a iterator like this one, for a list of comments:
// the iterator class, pretty much the same as the one from the php docs...
abstract class MyIterator implements Iterator{
...
4
votes
5answers
988 views
Find out which combinations of numbers in a set add up to a given total
I've been tasked with helping some accountants solve a common problem they have - given a list of transactions and a total deposit, which transactions are part of the deposit? For example, say I have ...
4
votes
2answers
531 views
Big-O complexity of nested for loops
I'm confused about the complexity of the following (the operation performed inside the inner loop is in constant time):
for(int i=0; i<n; i++)
for(int j=i; j<n; j++)
is this O(n^2) or O(n)? ...
4
votes
4answers
504 views
C pointer arithmetic snippet
I have a program that I'm trying to decode. It is translated to C from another language (whose name is not spoken here), and as I want to understand how it works, I am slowly rewriting the code and ...
4
votes
5answers
4k views
What is the Big-O of a nested loop, where number of iterations in the inner loop is determined by the current iteration of the outer loop?
What is the Big-O time complexity of the following nested loops:
for(int i = 0; i < N; i ++)
{
for(int j = i + 1; j < N; j++)
{
System.out.println("i = " + i + " j = " + j);
...
3
votes
4answers
79 views
Big O of this equation?
for (int j=0,k=0; j<n; j++)
for (double m=1; m<n; m*=2)
k++;
I think it's O(n^2) but I'm not certain. I'm working on a practice problem and I have the following choices:
O(n^2)
...
3
votes
5answers
189 views
How to speed up python loop
I had a look at several dicussions on several sites and none of them gave me a solution.
This piece of code takes more than 5 seconds to run :
for i in xrange(100000000):
pass
I'm working on an ...
3
votes
2answers
74 views
reuse nested loops without copy and paste
Suppose I've this nested loop
for (int a=1; a<MAX_A; ++a)
for (int b=1; b<MAX_B; ++b)
for (int c=1; c<MAX_C; ++c)
{
do_something(a, b ,c);
}
and I reuse this loop in ...
3
votes
2answers
250 views
vectorizing 4 nested for-loops in Matlab
I'm writing a program for school and I have nested for-loops that create a 4-dimensional array (of the distances between two points with coordinates (x,y) and (x',y')) as below:
pos_x=1:20;
...
3
votes
11answers
202 views
Python: merging tally data
Okay - I'm sure this has been answered here before but I can't find it....
My problem: I have a list of lists with this composition
0.2 A
0.1 A
0.3 A
0.3 B
0.2 C
0.5 C
My goal is to output the ...
3
votes
1answer
436 views
Multi-dimensional nested OpenMP loop
What is the proper way to parallelize a multi-dimensional embarrassingly parallel loop in OpenMP? The number of dimensions is known at compile-time, but which dimensions will be large is not. Any of ...
3
votes
6answers
497 views
PHP Looping Template Engine - From Scratch
For a group project I am trying to create a template engine for PHP for the people less experienced with the language can use tags like {name} in their HTML and the PHP will replace that tag with a ...
3
votes
5answers
154 views
Clever 5x5 grid of alphabets in C#
I have to print a 5x5 table with alphabets in them, like:
<table>
<tr> <td>A</td> <td>B</td> <td>C</td> <td>D</td> <td>D</td>
...
3
votes
2answers
168 views
For Loops, Application Hanging
Well I'm creating an application, I'm using for loops to basically read every pixel of an image looking for patterns in pixel color (simple stuff) Anyway for some reason my application simply locks up ...
3
votes
2answers
231 views
Searching specific rows in a multi-dimensional array
I'm new to java programming and I can't wrap my head around one final question in one of my assignments.
We were told to create a static method that would search a 2-D array and compare the numbers ...
3
votes
1answer
74 views
Optimising Finite Differences w/SSE
I am wondering if it is possible to use SSE (1,2,3,4,...) to optimise the following loop:
// u and v are allocated through new double[size*size]
for (int j = l; j < size-1; ++j)
{
for (int k = ...
3
votes
4answers
453 views
Efficiency of nested Loop
See the following snippet:
Long first_begin = System.currentTimeMillis();
// first nested loops
for (int i = 0; i < 10; i++) {
for (int j = 0; j < 1000000; j++) {
...
3
votes
4answers
544 views
Why should I avoid using Java Label Statements?
Everywhere across the internet people say that you should avoid using label statements in java. However, I find them very useful in some cases, namely nested loops.
I cannot find satisfactory answers ...
2
votes
2answers
34 views
Wordpress: Nested Loop: Loop 6 posts, Loop same w/ different code, Repeat
I'm trying to get a nested loop working that will display 6 posts with a certain code, then go back, display the same 6 posts with a different code and then continue doing this until there are no more ...
2
votes
3answers
91 views
Generate all tuples with C - better way than nested loops?
I have an array double x[] of length 11 and a function f(double x[]). I want to find the minimum of the function f() by discretization. So for given values val1, val2, ..., valn I need a loop trough ...
2
votes
3answers
103 views
Nested loops with C++ coin toss
I have to write a program that runs a loop for a coin toss. I am supported to enter a number into the console and have it run a loop of the coin toss for that many times. I need to use nested loops. I ...
2
votes
1answer
142 views
XSLT - Sum of each attribute in every element in XML with for-each?
I am new to the whole XSLT thing and I've already tried looking it up through several forums, but I still haven't found the actual solution to my problem.
I have the following XML:
<Cinema>
...
2
votes
4answers
117 views
Which is more efficient: a SQL JOIN or nested PHP loop?
I have several tables from which I need to display data.
Schools
-------
id | Title
Programs
--------
id | descr | title | type | school.id
Granted, not the best set up but there isn't any thing I ...
2
votes
2answers
87 views
How do I fix nested loop because it displays all values for each row instead of one value per row?
<?PHP
// areaList
// [0] = Upstairs Tables
// [1] = Upstairs Seats
// [2] = Upstairs TV
// [3] = Upstairs Computers
// [4] = Lounges SL
// [5] = Lounges BL
// ...
2
votes
3answers
95 views
Problem with loop in C
i'm trying to compute "2^0 + 2^1 + 2^2 + ... + 2^14", using the following program(i'm a newbie and can only compute a exponent by multiply itself a certain times). The result should be 32767, but i ...
2
votes
7answers
96 views
How to get the size of arrays packed as value in a Dictionary<K,V> in C#?
I have a Dictionary<K,V> object already filled with data:
Dictionary<string, double[]> ltableData;
Every double[] has the same size (number of elements).
I do not know in advance ...
2
votes
3answers
2k views
breaking/exit nested for in vb.net
how do i get out of nested for or loop in vb.net?
I tried using exit for but it jumped or breaked only one for loop only.
how can i make it for the following:
for each item in itemList
for ...
2
votes
5answers
417 views
Turning a recursive function into a for loop?
Does every recursive function have an equivalent for loop? (Both achieve the same result).
I have this recursive function:
private static boolean recur(String word, int length) {
if(length == 1 ...
2
votes
2answers
70 views
Many nested `for` cycles depending on a variable
I want to put as many for cycles in themselfs depending of value in a variable.
For example, if the variable @var = 1, I need to perform:
for letter1 in @range
do something
end
If the variable ...
2
votes
1answer
216 views
Is this postgres function cost efficient or still have to clean
There are two tables in postgres db.
english_all and english_glob
First table contains words like international,confidential,booting,cooler ...etc
I have written the function to get the words from ...
2
votes
2answers
189 views
javascript: for (i in str), nested, weird results outside of FF?
I'm rather confused at the moment, could someone explain this one to me? Maybe it's something small I'm oblivious to, but I'm confused as to why this isn't resulting as I expect it to.
I have created ...
2
votes
6answers
133 views
PHP: Is it wise to call a method&nested loop in a foreach loop?
Hi I have a method that returns an array of support tickets. Each support ticket can have many notes so I have a method that returns an array of tickets notes with that ticket id. I want to display ...
2
votes
7answers
141 views
Is a concurrency approach a good idea for speeding a long iteration?
I have an app that does an iteration to create points on a graph over time.
While I'm gathering data for each point across the x-axis I also must execute a recursive lookup which effectually means I ...
2
votes
5answers
268 views
Help modifying recursive function
Given a canvas, let's say 10x10, and given 3 rectangles/squares.
Canvas = 10x10
Rectangle 1 = 2x2
Rectangle 2 = 3x3
Rectangle 3 = 2x4
I've created a recursive function that loops every position of ...
2
votes
7answers
3k views
Iterate Multi-Dimensional Array with Nested Foreach Statement
I think this might be a pretty simple question, but I haven't been able to figure it out yet. If I've got a 2-dimensional array like so:
int[,] = new int[2,3] { {1, 2, 3}, {4, 5, 6} };
What's the ...
2
votes
3answers
196 views
Is There a More Efficient Way to Write Nested While Loops?
The code below shows nested while loops, but it's not the very efficient. Suppose I wanted to extend the code to include 100 nested while loops. Is there a better way to accomplish this task?
...