Tagged Questions

0
votes
3answers
143 views

C++: Iterating through a vector of vectors

Hey there! I'm doing this project and right now I'm trying to: create some of objects and store them in vectors, which get stored in another vector V iterate through the vectors …
1
vote
2answers
35 views

What is the difference between release and iteration?

The title says What is the difference between release and iteration? Can you explain what the difference is?
3
votes
5answers
170 views

How do I iterate through instances of a class in C#?

Is there a way to iterate over instances of a class in C#? These instances are not tracked or managed in a collection.
0
votes
4answers
103 views

Efficient way of calling set of functions in Python

I have a set of functions: functions=set(...) All the functions need one parameter x. What is the most efficient way in python of doing something similar to: for function in f …
0
votes
1answer
61 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
95 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
105 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 …
2
votes
1answer
50 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
0answers
21 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) { …
0
votes
2answers
60 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
214 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
125 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
94 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
149 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 …

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