Tagged Questions

0
votes
1answer
45 views

How to synchronize asynchronous methods?

var arguments = new double[] { 1d, 2d, 3d }; var result = arguments.Select(arg => Math.Sqrt(arg)); Now imagine a asynchronous method instead of Math.Sqrt (i'm not sure the met …
0
votes
5answers
94 views

More efficient method for this calculation?

a = 218500000000 s = 6 f = 2 k = 49 d = k + f + s r = a i = 0 while (r >= d): r = r - d #print ('r = ',r) i = i+1 #print ('i = ',i) print (i) I think it does what …
1
vote
2answers
91 views

linux iterate over files in directory

I'm trying to iterate over each file in a directory. Here's my code so far. while read inputline do input="$inputline" echo "you entered $input"; if [ -d "${input}" ] then …
0
votes
0answers
19 views

Java: JGraphT: Iterate through nodes

I'm trying to iterate through all nodes, so I can print them out for graphviz. What is the best way to do that using the JGraphT library? public static void main(String[] args) { …
2
votes
1answer
44 views

How to make a loop in Power Point VBA?

As far as I know, the code below gets a shape from the active window, nudges it a bit, copies the slide and pastes it right after the current one, then turns the pasted slide into …
0
votes
2answers
57 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
101 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
209 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() …
3
votes
3answers
110 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
91 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
148 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
6answers
115 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 …
2
votes
7answers
233 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 …
3
votes
4answers
131 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
3answers
145 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 …

1 2 3 4 5 10 next
15 30 50 per page