0
votes
2answers
55 views
c# .net iterating twice a list in a inner and outer loop - local copy or reference?
Hallo everyone,
i have a list of nodes ListNode and i want to draw a line between two nodes if there is an edge / link between them. My approach so far is:
public void drawGraphI …
2
votes
4answers
89 views
Python Scoping/Static Misunderstanding
I'm really stuck on why the following code block 1 result in output 1 instead of output 2?
Code block 1:
class FruitContainer:
def __init__(self,arr=[]):
self. …
2
votes
3answers
189 views
Java: Foreach loop
Hi,
In Java, a for-each loop.
If I have a method that generates an array, called genArray().
In the following code, will the array each time be re-generated by calling genArray() …
0
votes
6answers
98 views
Java: Changing the properties of an iterable object while iterating over it
The following code is just to produce an example of the problem:
public static void main(String[] args) {
Collection<Integer> src = new ArrayList<Integer>();
Coll …
3
votes
3answers
83 views
Fastest way to iterate array in PHP
I'm studying for the Zend PHP certification.
Not sure the answer to this question.
Question: What is the best way to iterate and modify every element of an array using PHP 5? …
3
votes
3answers
75 views
C# iteration requesting scenario based example
I am dropping this line after having visited different websites to try understand real time
example of using custom enumeration.I got examples.But they lead me to confusion.
Exam …
5
votes
8answers
141 views
What statistics can be maintained for a set of numerical data without iterating?
Say I maintain a collection of numerical data -- let's say, just a bunch of numbers. For this data, there are loads of calculated values that might be of interest; one example woul …
0
votes
2answers
19 views
UserControl array, each control has a method to set the text of a label there, but getting a NullReferenceException. Help!
So, I create an array:
TorrentItem[] torrents = new TorrentItem[10];
The TorrentItem control has a method called SetTorrentName(string name):
private void SetTorrentName(string …
1
vote
3answers
131 views
Iterating over nested lists with a Next() function, without a generator.
Whilst I'd love to solve this problem in python, I'm stuck in Delphi for this one. I have nested lists (actually objects with nested lists as properties, but nevermind), and I want …
3
votes
4answers
125 views
Most efficient way to add new keys or append to old keys in a dictionary during iteration in Python?
Here's a common situation when compiling data in dictionaries from different sources:
Say you have a dictionary that stores lists of things, such as things I like:
likes = {
…
1
vote
1answer
72 views
Ocaml - Iterative to Recursion
For an assignment, i have written the following code in recursion. It takes a list of a vector data type, and a vector and calcuates to closeness of the two vectors. This method wo …
2
votes
7answers
243 views
Can you remove an item from a List<> whilst iterating through it in C#
Can you remove an item from a List<> whilst iterating through it? Will this work, or is there a better way to do it?
My code:
foreach (var bullet in bullets)
{
if (bulle …
2
votes
7answers
196 views
Design patterns for converting recursive algorithms to iterative ones
Are there any general heuristics, tips, tricks, or common design paradigms that can be employed to convert a recursive algorithm to an iterative one? I know it can be done, I'm won …
0
votes
3answers
199 views
Java How to find a value in a linked list iteratively and recursively
Hi
I have a method that has a reference to a linked list and a int value. So, this method would count and return how often the value happens in the linked list. So, I decided to m …
1
vote
3answers
110 views
ocaml recurssion iteration- find last occurence of element in a list
Assuming l is a List and elem is an element, how can I return the last occurence of the element elem in the list l? Also return -1 if the element does not exisit in l. I dont quite …
