0
votes
3answers
185 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 inside V
iterate …
1
vote
2answers
36 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
110 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 functions:
…
0
votes
5answers
731 views
Parallel iteration in C#?
Is there a way to do foreach style iteration over parallel enumerables in C#? For subscriptable lists, I know one could use a regular for loop iterating an int over the index range, but I really …
0
votes
1answer
65 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 method below is a true …
0
votes
5answers
96 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 I expect it to, but …
0
votes
0answers
23 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) {
…
1
vote
2answers
110 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
echo "Good Job, …
1
vote
4answers
360 views
How can I find all permutations of a string without using recursion?
Can someone help me with this: This is a program to find all the permutations of a string of any length. Need a non-recursive form of the same. ( a C language implementation is preferred)
using …
2
votes
1answer
60 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 an active window, …
7
votes
5answers
1k views
Converting a List of Tuples into a Dict in Python
Hi,
I have a list of tuples like this:
[
('a', 1),
('a', 2),
('a', 3),
('b', 1),
('b', 2),
('c', 1),
]
I want to iterate through this keying by the first item, so for example I could print …
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 drawGraphInBIM(ref BIM bim)
{
…
2
votes
4answers
104 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.array = arr
…
0
votes
6answers
122 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>();
…
