Tagged Questions

6
votes
14answers
1k 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 boo …
4
votes
11answers
395 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( …
4
votes
15answers
933 views

Is it possible to exit a for before time in C++, if an ending condition is reached?

Hello, 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 …
3
votes
7answers
304 views

How can I handle nested looping without a chain a foreachs in Perl?

Hi, I am new to Perl. I am writting a Perl script to download the same type of data from different sites. I have written the below code: #! /usr/bin/perl use strict; use warning …
3
votes
4answers
351 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 rewri …
2
votes
5answers
197 views

How can I create combinations of several lists without hardcoding loops?

I have data that looks like this: my @homopol = ( ["T","C","CC","G"], # part1 ["T","TT","C","G","A"], #part2 ["C","CC …
2
votes
8answers
653 views

Replace Nested For Loops… or not

I have a script that loops through a series of four (or less) characters strings. For example: aaaa aaab aaac aaad If have been able to implement it with nested for loops like …
2
votes
4answers
1k 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 = " + …
1
vote
7answers
108 views

Number of nested loops at runtime

I am trying to output all the possible unique integer combinations from 1 to max for a set number of integers. So for 3 integers and a max of 4 I would get: 123 124 134 234 I am …
1
vote
1answer
44 views

Table within a table, table outputted except last <td> in each row except for the first row?

I've got an inventory table that needs to have certain in each row, and then in the last column in each row, i want to loop out each item that was used per a specific inventory upd …
1
vote
3answers
118 views

Fastest nested loops over a single list (with elements remove or not)

Hello, I am looking for advice about how to parse a single list, using two nested loops, in the fastest way, avoiding doing len(list)^2 comparisons, and avoiding duplicate files i …
1
vote
1answer
507 views

Access db loop - for each record in one table create array of records in another table

Is it possible to create a nested looping query in Access DB that will update a third table? I have a master (header) table: ------------------------ masters -------------------- …
1
vote
3answers
287 views

What’s a good way to structure variable nested loops?

Suppose you're working in a language with variable length arrays (e.g. with A[i] for all i in 1..A.length) and have to write a routine that takes n (n : 1..8) variable length array …
0
votes
4answers
60 views

How to insert into nested vector without invalidating iterator(s)

I have some boolean expressions to evaluate and process. Maybe this would have all been better with Boost, but I'm still learning STL and didn't go that way. I'm now learning abo …
0
votes
5answers
115 views

Can anyone see what is wrong with my Javascript?

I have written the following: var pages=["[www.google.co.uk] This is the WWW. ","[www.yahoo.co.uk] This is also the WWW. "]; function findScoresC(s){ var scores=[]; var words=[]; …

1 2 next
15 30 50 per page