Tagged Questions
The iterating tag has no wiki summary.
10
votes
10answers
5k views
Iterate over pairs in a list (circular fashion) in Python
The problem is easy, I want to iterate over each element of the list and the next one in pairs (wrapping the last one with the first).
I've thought about two unpythonic ways of doing it:
def ...
10
votes
2answers
338 views
Strategy for Crowd Sourcing and Iterative Development
I've recently gotten involved with a web-based crowd sourcing project. I have two main issues, both with several subquestions. Any insight into any of these questions would be greatly ...
10
votes
4answers
23k views
Sorted Dictionary in C#
Is there any way I can iterate backwards (in reverse) through a SortedDictionary in c#?
Or is there a way to define the SortedDictionary in descending order to begin with?
9
votes
5answers
198 views
iterating on enum type
I don't know if it is possible to do what I want to do, but I think why not.
I have example enum:
public enum Animals {
Cat,
Dog,
...
}
What I want to do is to iterate on this enum. I ...
4
votes
1answer
78 views
iterating through 2-d array in VB.Net
I was amazed (and horrified) that the following code works in Vb.Net
Dim test2DArr As String(,) = {{"A", "B"}, {"C", "D"}}
For Each s As String In test2DArr
MsgBox(s)
Next
When run, four message ...
4
votes
4answers
886 views
Iterating over arrays in haskell
My problem is that I need to iterate over array and calculate some value depend on every element. I was looking for some fold-like function for arrays, but standard library seems to be very useless ...
3
votes
5answers
68 views
Stopping jQuery from doing its thing?
I have this code.
$(document).ready(function() {
$('#box').hide();
$(window).bind('scroll', function(){
if($(this).scrollTop() > 200) {
$("#box").fadeIn(300);
}
else {
...
3
votes
4answers
256 views
Modifying a data structure while iterating over it
What happens when you add elements to a data structure such as a vector while
iterating over it. Can I not to this?
I tried this and it breaks..
void main() {
vector<int> x;
x.push_back(1);
...
2
votes
4answers
391 views
Iterating over a map
In this question I'm not asking how to do it but HOW IS IT DONE.
I'm trying (as an excersise) implement simple map and although I do not have problems with implementing links and they behavior (how to ...
2
votes
1answer
442 views
looping through set of elements in jquery
$('form td .hint p') this jquery selector returns back a list [p,p,p,p,p,p].
I would like to know what's the best way to loop through each of those, check their css values, and do something if the ...
1
vote
2answers
37 views
How can I map a new array from a specific (known) pattern?
Generally, how can you determine how to iterate through an array based on a known pattern?
Specifically, this is the pattern I would like to iterate through, returning an array of arrays: (Each digit ...
1
vote
4answers
88 views
Iterating with Python
I have two arrays and from these two I have to create another one in this way:
for i in arange(0,len(second_array),1):
third_array[i] = my_function(first_array[i],second_array[i])
Here ...
1
vote
2answers
51 views
Get “closest” Key in Visual Basic Dictionary
In Visual Basic I have a Dictionary which holds a Date as a key and a custom class as value (I will use a String in the example).
I keep track of a list where a date is saved with a value.
For ...
1
vote
5answers
138 views
Python query: iterating through log file
Please can someone help me solve the following query?
I have a log file with thousands of lines like the following:-
jarid: 7e5ae720-9151-11e0-eff2-00238bce4216 recv: 1 timestamp: 00:00:02,217
...
1
vote
2answers
91 views
Length of Object map actionscript
I have an object using as a MAp in actionscript
var map:Object = new Object();
map[1] = "one";
map[2] = "one";
is ther any easy way to get length of map without iterating
1
vote
1answer
437 views
Iterating Over Params Hash
I'm having an extremely frustrating time getting some images to upload. They are obviously being uploaded as rack/multipart but the way that I'm iterating over my params hash must be causing the ...
1
vote
2answers
1k views
Fastest way to iterate through an NSArray with objects and keys
I have an NSArray called 'objects' below with arrayCount = 1000. It takes about 10 secs to iterate through this array. Does anyone have a faster method of iterating through this array?
Thanks!
for ...
0
votes
4answers
85 views
How to iterate over table and geting data within <td> tag without using id attribute of tabel in java
I know it can be done by getElementbyId(tableId), but I don't have id attribute here. The table is like
<table>
<tr>
<td>data</td>
</tr>
...
0
votes
1answer
46 views
VB.NET Iterating through control containers
How do I go about looping through all the controls within a container, and all the controls in the container of a containing control, and so on.
Form
-Panel
--Control
--Tab
----Control
----Control
...
0
votes
4answers
74 views
Python - Iterating through a large list and putting in queue
I have the for loop code:
people = queue.Queue()
for person in set(list_):
first_name,last_name = re.split(',| | ',person)
people.put([first_name,last_name])
The list being iterated has ...
0
votes
1answer
57 views
Very Basic std::vector iterating problem
std::vector<Ogre::SceneNode*>::iterator itr;
for(itr=mSelectedObjects.begin();itr!=mSelectedObjects.end();itr++){
itr->showBoundingBox(true); //here
}
I'm getting "expression must have ...
0
votes
2answers
119 views
iterating returned JSON OBJECT using jQUERY $.each()
I'm using jQuery's $.ajax method to call getjson.php which returns a JSON object using PHPs json_encode($data). The Structure of my JSON looks like this...
[
{
"StoreKey": "84",
...
0
votes
7answers
99 views
Stopping an iteration of an ArrayList in Java
I'm iterating an ArrayList of clients named clientList that contains clients from the class Client (user,pass)
ArrayList<Client> clientList= new ArrayList<Client>();
Here's the ...
0
votes
1answer
613 views
Javascript Object: iterating over properties
I have a variable, which, when printed to console, looks like this:
Object { PK-34={...}, PK-35={...}}
I'm adding a size method to this variable:
Model_value.size = function(obj) {
var size = ...
0
votes
1answer
66 views
from log with regex extracted values fail correct insertion into sqlite table
Problem with storing extracted values in SQLite - How to adress or index list of values for proper insertion into table.
The Regex works fine:
input logging data looks like:
0.0.0(06026104)
...
0
votes
1answer
358 views
Grails iterating through database tables
As I'm a bit new to grails, I'm wondering how I can iterate through the current data i have saved in the database to check if the information already exists.
For instance, lets say I have a domain ...
0
votes
3answers
2k views
Manually iterating a line of a file | bash
I could do this in any other language, but with Bash I've looked far and wide and could not find the answer.
I need to manually increase $line in a script. Example:
for line in `cat file`
do
foo()
...
-1
votes
1answer
37 views
How to iterate over <td> tags with condition using jsoup
I am able get all text with in tags but I want to access only specific td tags.
Eg.I want to get data of second cell text whose first cell html contains attribute
a name="manufacturer"
or Content.I ...