active questions tagged iteration - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T19:05:50Zhttp://stackoverflow.com/feeds/tag/iterationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810657/c-iterating-through-a-vector-of-vectors0C++: Iterating through a vector of vectorsZepee2009-11-27T21:18:27Z2009-11-28T08:37:46Z
<p>Hey there! I'm doing this project and right now I'm trying to:</p>
<ol>
<li>create some of objects and store them in vectors, which get stored in another vector V</li>
<li>iterate through the vectors inside V</li>
<li>iterate through the objects inside the individual vectors</li>
</ol>
<p>Anyway, I was just searching the web and I came accross the stl for_each function. It seems pretty neat but I'm having problems with it. I'm trying to use it in this way:</p>
<pre><code>for_each(V.begin(), V.end(), iterateThroughSmallVectors);
</code></pre>
<p>the iterateThroug.... simply does the same on the vector passed to it..</p>
<p>Now I'm getting a weird "Vector iterators incompatible" runtime error. I've looked on it and can't find any useful input on this..</p>
<p>I don't know if it helps, but V is a private vector<> stored in class A, which has an accessor to it, and I'm trying to iterate through it in class B by doing:</p>
<pre><code>A->getV().begin(), A->getV().end(), etc..
</code></pre>
<p>Anyone got any idea of what is going on?</p>
<p>EDIT: Ok, so I think it is better to just post the code, and where problems might be arrising...</p>
<p>getTiles in gameState.h:</p>
<pre><code>vector<vector<tile*>> getTiles();
</code></pre>
<p>for_each loops in main.cpp:</p>
<pre><code>for_each(currState->getTiles().begin(),currState->getTiles().end(), drawTiles);
.
.
void drawTiles(vector<tile*> row)
{
for_each(row.begin(), row.end(), dTile);
}
void dTile(tile *t)
{
t->draw();
}
</code></pre>
<p>creating the vectors:</p>
<pre><code>int tp = -1;
int bCounter = 0;
int wCounter = 0;
for (int i = 0; i < 8; i++)
{
vector<tile*> row(8);
for (int j = 0; j < 8; j++)
{
tile *t = new tile(tp, (i+(SIDELENGTH/2))*SIDELENGTH,
(j+(SIDELENGTH/2))*SIDELENGTH);
row.push_back(t);
tp *= -1;
}
currState->setTiles(row);
tp *= -1;
}
</code></pre>
<p>and just in case it might be relevant:</p>
<pre><code>void gameState::setTiles(vector<tile*> val)
{
tiles.push_back(val);
}
</code></pre>
<p>Is it easier to spot the problem now? I hope so... And if you do spot any stupid stuff I might be doing, please let me know, I'm kind of new to C++ and the pointers and references still confuse me.</p>
<p>EDIT2: Thanks guys, that worked perfectly... well for that problem, now it seems I have an issue with the creation of the tiles and stroing them in the row vector.. it seems that even through the vector is created and passes correctly, the tiles that were supposed to be in it aren't (they are lost after the :</p>
<pre><code> for (int j = 0; j < 8; j++)
{
tile *t = new tile(tp, (i+(SIDELENGTH/2))*SIDELENGTH,
(j+(SIDELENGTH/2))*SIDELENGTH);
row.push_back(t);
tp *= -1;
}
</code></pre>
<p>loop. If any of you has any good ideas about solving this you're welcome to help me ;) In the mean time, I'll keep trying to fix it</p>
http://stackoverflow.com/questions/1800083/what-is-the-difference-between-release-and-iteration1What is the difference between release and iteration?streetparade2009-11-25T21:28:35Z2009-11-25T21:33:31Z
<p>The title says What is the difference between release and iteration? Can you explain what the difference is?</p>
http://stackoverflow.com/questions/1786083/how-do-i-iterate-through-instances-of-a-class-in-c3How do I iterate through instances of a class in C#?Asaf2009-11-23T21:23:46Z2009-11-23T22:10:14Z
<p>Is there a way to iterate over instances of a class in C#? These instances are not tracked or managed in a collection.</p>
http://stackoverflow.com/questions/1785867/efficient-way-of-calling-set-of-functions-in-python0Efficient way of calling set of functions in PythonEzequiel2009-11-23T20:52:01Z2009-11-23T21:32:33Z
<p>I have a set of functions:</p>
<pre><code>functions=set(...)
</code></pre>
<p>All the functions need one parameter x.</p>
<p>What is the most efficient way in python of doing something similar to:</p>
<pre><code>for function in functions:
function(x)
</code></pre>
http://stackoverflow.com/questions/523194/parallel-iteration-in-c0Parallel iteration in C#?recursive2009-02-07T05:19:02Z2009-11-22T07:27:37Z
<p>Is there a way to do <code>foreach</code> style iteration over parallel enumerables in C#? For subscriptable lists, I know one could use a regular <code>for</code> loop iterating an int over the index range, but I really prefer <code>foreach</code> to <code>for</code> for a number of reasons.</p>
<p>Bonus points if it works in C# 2.0</p>
http://stackoverflow.com/questions/1776011/how-to-synchronize-asynchronous-methods0How to synchronize asynchronous methods?Jader Dias2009-11-21T16:53:10Z2009-11-21T18:09:30Z
<pre><code>var arguments = new double[] { 1d, 2d, 3d };
var result = arguments.Select(arg => Math.Sqrt(arg));
</code></pre>
<p>Now imagine a asynchronous method instead of Math.Sqrt (i'm not sure the method below is a true async method, but it behaves approximately like one)</p>
<pre><code>public void BeginSqrt(Action<double> callback, double argument)
{
Thread.Sleep(100);
callback(Math.Sqrt(argument));
}
</code></pre>
<p>There is no right way of calling such method without splitting the code. So let's synchronize this asynchronous method with AutoResetEvent. I created a helper class:</p>
<pre><code>public class Synchronizer<T, TResult>
{
AutoResetEvent _autoResetEvent = new AutoResetEvent(false);
TResult _result;
public TResult Execute(Action<Action<TResult>,T> beginMethod, T argument)
{
beginMethod(Callback, argument);
_autoResetEvent.WaitOne();
return _result;
}
void Callback(TResult result)
{
_result = result;
_autoResetEvent.Set();
}
}
</code></pre>
<p>With this class we can:</p>
<pre><code>var synchronizer = new Synchronizer<double, double>();
var result = arguments.Select(arg => synchronizer.Execute(BeginSqrt, arg));
</code></pre>
<p>This solution I created in a few minutes while I was thinking about the problem. There is a native alternative to this? I am sure my solutions has bugs, since it misses some locks. There is a more proven library to do that?</p>
http://stackoverflow.com/questions/1747713/more-efficient-method-for-this-calculation0More efficient method for this calculation?Nimbuz2009-11-17T09:51:13Z2009-11-17T10:01:57Z
<pre><code>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)
</code></pre>
<p>I think it does what I expect it to, but its way too slow to calculate such a large number, I waited 5 mins for i to print (while python used 100% cpu to calculate..), but it didn't. Is there a more efficient way of rewriting this piece of code so I can see how many iterations (i) it takes to complete?</p>
<p>Many thanks</p>
http://stackoverflow.com/questions/1746054/java-jgrapht-iterate-through-nodes0Java: JGraphT: Iterate through nodesRosarch2009-11-17T01:34:14Z2009-11-17T01:40:26Z
<p>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?</p>
<pre><code>public static void main(String[] args) {
UndirectedGraph<String, DefaultEdge> g = new SimpleWeightedGraph<String, DefaultEdge>(DefaultEdge.class);
String odp = "ODP";
String cck = "CCK";
String mfe = "MFE";
g.addVertex(odp);
g.addVertex(cck);
g.addVertex(mfe);
g.addEdge(odp, cck);
g.addEdge(odp, mfe);
}
</code></pre>
<p>Also, how do I add edge weights?</p>
<p><strong>Edit:</strong> This seems to work pretty well. But is there a better way?</p>
<pre><code> Set<DefaultEdge> edges = g.edgeSet();
for (DefaultEdge e : edges) {
gv.addln(String.format("\"%s\" -> \"%s\"", g.getEdgeSource(e), g.getEdgeTarget(e)));
}
</code></pre>
http://stackoverflow.com/questions/1732861/linux-iterate-over-files-in-directory1linux iterate over files in directoryMawnster2009-11-14T01:04:53Z2009-11-14T03:10:38Z
<p>I'm trying to iterate over each file in a directory. Here's my code so far.</p>
<pre><code>while read inputline
do
input="$inputline"
echo "you entered $input";
if [ -d "${input}" ]
then
echo "Good Job, it's a directory!"
for d in $input
do
echo "This is $d in directory."
done
exit
</code></pre>
<p>my output is always just one line</p>
<pre><code>this is $input directory.
</code></pre>
<p>why isn't this code working? what am I doing wrong?</p>
<p>Cool. When I echo it prints out </p>
<pre><code>$input/file
</code></pre>
<p>Why does it do that? Shouldn't it just print out the file without the directory prefix?</p>
http://stackoverflow.com/questions/1326824/how-can-i-find-all-permutations-of-a-string-without-using-recursion1How can I find all permutations of a string without using recursion?Shrinidhi2009-08-25T08:28:54Z2009-11-11T14:17:07Z
<p>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)</p>
<pre><code>using namespace std;
string swtch(string topermute, int x, int y)
{
string newstring = topermute;
newstring[x] = newstring[y];
newstring[y] = topermute[x]; //avoids temp variable
return newstring;
}
void permute(string topermute, int place)
{
if(place == topermute.length() - 1)
{
cout<<topermute<<endl;
}
for(int nextchar = place; nextchar < topermute.length(); nextchar++)
{
permute(swtch(topermute, place, nextchar),place+1);
}
}
int main(int argc, char* argv[])
{
if(argc!=2)
{
cout<<"Proper input is 'permute string'";
return 1;
}
permute(argv[1], 0);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1709154/how-to-make-a-loop-in-power-point-vba2How to make a loop in Power Point VBA?brilliant2009-11-10T16:16:03Z2009-11-10T18:53:52Z
<p>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, and nudges it again:</p>
<blockquote>
<p>Sub Test()</p>
<pre><code>' Get the active presentation
Dim oPresentation As Presentation
Set oPresentation = ActivePresentation
' Get the first slide in the presentation
Dim oSlide As Slide
Set oSlide = oPresentation.Slides(1)
' Get the first shape on the slide
Dim oShape As Shape
Set oShape = oSlide.Shapes(1)
' Nudge the shape to the right
oShape.Left = oShape.Left + 1
' Copy the whole slide
oSlide.Copy
' Paste the slide as a new slide at position 2
Dim oNewSlides As SlideRange
Set oNewSlides = oPresentation.Slides.Paste(2)
' Get a reference to the slide we pasted
Dim oNewSlide As Slide
Set oNewSlide = oNewSlides(1)
' Get the first shape on the NEW slide
Dim oNewShape As Shape
Set oNewShape = oNewSlide.Shapes(1)
' Nudge the shape to the right
oNewShape.Left = oNewShape.Left + 1
</code></pre>
<p>End Sub</p>
</blockquote>
<p>As far as I can understand, in order to implement this code, I should have an active window opened and it should have at least one shape in it. Before I run this code I have only one slide; after the code has been run, I have two slides: the older one is number 1, and the newer one is number 2. </p>
<p>If I run this code one more time, I will get three slides as a result: the oldest one being still number 1, but the oldest one being number 2, not number 3.</p>
<p>My question is how can I make it produce slides, so that the newer slides are always the ones with a greater ordinal number, i.e. every newly created slide should be the last one in the slide preview sidebar (the lowest one)?</p>
<p>And also, how can I make it into a loop? So that I don't need to re-run this code again and again, but simply make a loop with a given number of loop's iterations.</p>
<p>I guess, if it should be a loop, then slides index should be turned into a variable, but I don't know how to do it in Power Point VBA. </p>
http://stackoverflow.com/questions/261655/converting-a-list-of-tuples-into-a-dict-in-python7Converting a List of Tuples into a Dict in PythonDan2008-11-04T12:03:34Z2009-11-07T23:16:44Z
<p>Hi,</p>
<p>I have a list of tuples like this:</p>
<pre><code>[
('a', 1),
('a', 2),
('a', 3),
('b', 1),
('b', 2),
('c', 1),
]
</code></pre>
<p>I want to iterate through this keying by the first item, so for example I could print something like this:</p>
<pre><code>a 1 2 3
b 1 2
c 1
</code></pre>
<p>How would I go about doing this without keeping an item to track whether the first item is the same as I loop round the tuples. This feels rather messy (plus I have to sort the list to start with)...</p>
<p>Thanks,</p>
<p>Dan</p>
http://stackoverflow.com/questions/1688713/c-net-iterating-twice-a-list-in-a-inner-and-outer-loop-local-copy-or-referenc0c# .net iterating twice a list in a inner and outer loop - local copy or reference?da82009-11-06T16:31:13Z2009-11-06T16:58:40Z
<p>Hallo everyone,</p>
<p>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:</p>
<pre><code>public void drawGraphInBIM(ref BIM bim)
{
foreach (Node nodeOuter in ListNode)
{
foreach (Node nodeInner in ListNode)
{
if (areNodesLinked(nodeOuter, nodeInner))
{
bim.drawPolygon(nodeOuter.XYZ, nodeInner.XYZ);
}
}
}
}
</code></pre>
<p>I am wandering how the if there is a local copy of ListNode for each loop or is there just a reference and nodeOuter and nodeInner are operating on the same ListNode?</p>
<p>Is there a better approach to this problem?</p>
<p>Cheers,</p>
<p>Dawit</p>
http://stackoverflow.com/questions/1654967/python-scoping-static-misunderstanding2Python Scoping/Static Misunderstanding Raymond Berg2009-10-31T17:11:27Z2009-11-03T14:14:15Z
<p>I'm really stuck on why the following code block 1 result in output 1 instead of output 2? </p>
<p><strong>Code block 1:</strong></p>
<pre><code>class FruitContainer:
def __init__(self,arr=[]):
self.array = arr
def addTo(self,something):
self.array.append(something)
def __str__(self):
ret = "["
for item in self.array:
ret = "%s%s," % (ret,item)
return "%s]" % ret
arrayOfFruit = ['apple', 'banana', 'pear']
arrayOfFruitContainers = []
while len(arrayOfFruit) > 0:
tempFruit = arrayOfFruit.pop(0)
tempB = FruitContainer()
tempB.addTo(tempFruit)
arrayOfFruitContainers.append(tempB)
for container in arrayOfFruitContainers:
print container
**Output 1 (actual):**
[apple,banana,pear,]
[apple,banana,pear,]
[apple,banana,pear,]
**Output 2 (desired):**
[apple,]
[banana,]
[pear,]
</code></pre>
<p>The goal of this code is to iterate through an array and wrap each in a parent object. This is a reduction of my actual code which adds all apples to a bag of apples and so forth. My guess is that, for some reason, it's either using the same object or acting as if the fruit container uses a static array. I have no idea how to fix this.</p>
http://stackoverflow.com/questions/1622084/java-changing-the-properties-of-an-iterable-object-while-iterating-over-it0Java: Changing the properties of an iterable object while iterating over itRosarch2009-10-25T21:13:22Z2009-10-25T22:37:55Z
<p>The following code is just to produce an example of the problem:</p>
<pre><code> public static void main(String[] args) {
Collection<Integer> src = new ArrayList<Integer>();
Collection<Integer> dest = new ArrayList<Integer>();
src.add(2);
src.add(7);
src.add(3);
src.add(2201);
src.add(-21);
dest.add(10);
while (src.size() != 0) {
for (int i : dest) {
int min = Collections.min(src);
dest.add(min);
src.remove(min);
}
}
}
</code></pre>
<p>What I want to do is move everything from src to dest in a specific order. (Here, it's what is the minimum value, but that's just a simplification from my real problem.) However, I am modifying dest while iterating over it, and get the following error:</p>
<pre><code>Exception in thread "main" java.util.ConcurrentModificationException
at java.util.AbstractList$Itr.checkForComodification(Unknown Source)
at java.util.AbstractList$Itr.next(Unknown Source)
at nth23.experimental.MoveBetweenSets.main(MoveBetweenSets.java:25)
</code></pre>
<p>How can I get around this?</p>
http://stackoverflow.com/questions/1618202/java-foreach-loop2Java: Foreach loopMartijn Courteaux2009-10-24T15:02:33Z2009-10-25T10:22:13Z
<p>Hi,</p>
<p>In Java, a for-each loop.<br>
If I have a method that generates an array, called <code>genArray()</code>.</p>
<p>In the following code, will the array each time be re-generated by calling <code>genArray()</code>?
Or will Java call once the method and store a copy from the array?</p>
<pre><code>for (String s : genArray())
{
//...
}
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1613350/usercontrol-array-each-control-has-a-method-to-set-the-text-of-a-label-there-bu0UserControl array, each control has a method to set the text of a label there, but getting a NullReferenceException. Help!Papuccino12009-10-23T13:15:22Z2009-10-23T13:22:52Z
<p>So, I create an array:</p>
<pre><code>TorrentItem[] torrents = new TorrentItem[10];
</code></pre>
<p>The <em>TorrentItem</em> control has a method called <em>SetTorrentName(string name)</em>:</p>
<pre><code>private void SetTorrentName(string Name)
{
label1.Text = Name;
}
</code></pre>
<p>I'm using a for loop to populate 10 TorrentItems like so:</p>
<pre><code>private TorrentItem[] GetTorrents()
{
TorrentItem[] torrents = new TorrentItem[10];
string test = "";
for (int i = 0; i < 10; i++)
{
test = i.ToString();
TorrentItem[i].SetTorrentName(test); //I get a null reference error here.
//What am I doing wrong?
}
</code></pre>
http://stackoverflow.com/questions/1538197/iterating-over-nested-lists-with-a-next-function-without-a-generator1Iterating over nested lists with a Next() function, without a generator.Greg2009-10-08T14:31:35Z2009-10-23T11:39:07Z
<p>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 to iterate over them in a generator fashion. That is, I want to write a Next function, which gives me the next item from the leaves of the tree described by the nested lists.</p>
<p>For example, lets say I have</p>
<pre><code> [[1,2,3],[4,5],[],[6],[7,8]]
</code></pre>
<p>I want 8 consecutive calls to Next() to return 1..8. </p>
<p>How can I do this in a language without yield and generators? </p>
<p>Note that the depth of the nesting is fixed (2 in this example, 4 in real life), but answers which solve the more general case where depth is variable are welcome.</p>
<p>EDIT: Sorry, I should have mentioned, this is Delphi 2007.</p>
http://stackoverflow.com/questions/1596988/fastest-way-to-iterate-array-in-php3Fastest way to iterate array in PHPYada2009-10-20T20:08:15Z2009-10-22T22:02:51Z
<p>I'm studying for the Zend PHP certification.</p>
<p>Not sure the answer to this question.</p>
<blockquote>
<p><strong>Question: What is the best way to iterate and modify every element of an array using PHP 5?</strong></p>
<p>a) You cannot modify an array during iteration</p>
<p>b) <code>for($i = 0; $i < count($array); $i++) { /* ... */ }</code></p>
<p>c) <code>foreach($array as $key => &$val) { /* ... */ }</code></p>
<p>d) <code>foreach($array as $key => $val) { /* ... */ }</code></p>
<p>e) <code>while(list($key, $val) = each($array)) { /* ... */ }</code></p>
</blockquote>
<p><hr /></p>
<p>My instinctive is (B) since there is no need to create temporary variable then I realize it won't work for associative arrays. Further searching around the net found this:
Storing the invariant array count in a separate variable improves performance.</p>
<pre><code>$cnt = count($array);
for ($i = 0; $i < $cnt; $i++) { }
</code></pre>
http://stackoverflow.com/questions/1600099/c-iteration-requesting-scenario-based-example3C# iteration requesting scenario based examplegenerix2009-10-21T10:58:24Z2009-10-21T11:43:48Z
<p>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.</p>
<p><strong>Example</strong> </p>
<p><strong>Take 1</strong></p>
<pre><code>class NumberArray
{
public int[] scores;
public NumberArray()
{
}
public NumberArray(int[] scores)
{
this.scores = scores;
}
public int[] Scores
{
get {return scores;}
}
}
</code></pre>
<p><strong>Take 2</strong></p>
<pre><code>public class Enumerator : IEnumerator
{
int[] scores;
int cur;
public Enumerator(int[] scores)
{
this.scores = scores;
cur = -1;
}
public Object Current
{
get {
return scores[cur];
}
}
public void Reset()
{
cur = -1;
}
public bool MoveNext()
{
cur++;
if (cur < scores.Length)
return true;
else return false;
}
}
public class Enumerable : IEnumerable
{
int[] numbers;
public void GetNumbersForEnumeration(int[] values)
{
numbers = values;
for (int i = 0; i < values.Length; i++)
numbers[i] = values[i];
}
public IEnumerator GetEnumerator()
{
return new Enumerator(numbers);
}
}
</code></pre>
<p><strong>Main</strong></p>
<pre><code>static void Main()
{
int[] arr = new int[] { 1, 2, 3, 4, 5 };
NumberArray num = new NumberArray(arr);
foreach(int val in num.Scores)
{
Console.WriteLine(val);
}
Enumerable en = new Enumerable();
en.GetNumbersForEnumeration(arr);
foreach (int i in en)
{
Console.WriteLine(i);
}
Console.ReadKey(true);
}
</code></pre>
<p>In take 2 ,I folowed the custom iteration to iterate the same integer array as i did in
take 2.Why should i <strong>beat about the bush to iterate an integer by using custom iteration</strong>?</p>
<p>Probably i missed out the <strong>real-time custom iteration</strong> need.Can you explain me the task which i can't do with exisiting iteration facility.(<strong>Just I finished my schooling,so give me
a simple example ,so that i can understand it properly</strong>).</p>
<p><strong>Update :</strong>
<strong>Those examples i took from some site.As nothing special in that code ,moreover we can achieve it very simply even without using custom iteration,my interest was to know the real scenario where cutom iteration is quite handy.</strong></p>
http://stackoverflow.com/questions/1574303/what-statistics-can-be-maintained-for-a-set-of-numerical-data-without-iterating5What statistics can be maintained for a set of numerical data without iterating?Dan2009-10-15T18:49:53Z2009-10-16T12:15:04Z
<p>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 would be the sum. To get the sum of all this data, I could...</p>
<p>Option 1: Iterate through the collection, adding all the values:</p>
<pre><code>double sum = 0.0;
for (int i = 0; i < values.Count; i++) sum += values[i];
</code></pre>
<p>Option 2: <em>Maintain</em> the sum, eliminating the need to ever iterate over the collection just to find the sum:</p>
<pre><code>void Add(double value) {
values.Add(value);
sum += value;
}
void Remove(double value) {
values.Remove(value);
sum -= value;
}
</code></pre>
<p><hr /></p>
<p><strong>EDIT</strong>: To put this question in more relatable terms, let's compare the two options above to a (sort of) real-world situation:</p>
<p>Suppose I start listing numbers out loud and ask you to keep them in your head. I start by saying, "11, 16, 13, 12." If you've just been remembering the numbers themselves and nothing more, and then I say, "What's the sum?", you'd have to think to yourself, "OK, what's 11 + 16 + 13 + 12?" before responding, "52." If, on the other hand, you had been keeping track of the sum yourself <em>while I was listing the numbers</em> (i.e., when I said, "11" you thought "11", when I said "16", you thought, "27," and so on), you could answer "52" right away. Then if I say, "OK, now forget the number 16," if you've been keeping track of the sum inside your head you can simply take 16 away from 52 and know that the new sum is 36, rather than taking 16 off the list and them summing up 11 + 13 + 12.</p>
<p>So my question is, what other calculations, other than the obvious ones like sum and average, are like this?</p>
<p><hr /></p>
<p><strong>SECOND EDIT:</strong> As an arbitrary example of a statistic that (I'm almost certain) <em>does</em> require iteration -- and therefore cannot be maintained as simply as a sum or average -- consider if I asked you, "how many numbers in this collection are divisible by the min?" Let's say the numbers are 5, 15, 19, 20, 21, 25, and 30. The min of this set is 5, which divides into 5, 15, 20, 25, and 30 (but not 19 or 21), so the answer is 5. Now if I remove 5 from the collection and ask the same question, the answer is now 2, since only 15 and 30 are divisible by the new min of 15; but, as far as I can tell, <em>you cannot know this without going through the collection again</em>.</p>
<p>So I think this gets to the heart of my question: if we can divide <em>kinds</em> of statistics into these categories, those that are <strong>maintainable</strong> (my own term, maybe there's a more official one somewhere) versus those that require iteration to compute any time a collection is changed, what are all the <em>maintainable</em> ones?</p>
<p>What I am asking about is not strictly the same as an <a href="http://en.wikipedia.org/wiki/Online%5Falgorithm" rel="nofollow">online algorithm</a> (though I sincerely thank those of you who introduced me to that concept). An online algorithm can begin its work without having even <em>seen</em> all of the input data; the <em>maintainable statistics</em> I am seeking will certainly have seen all the data, they just don't need to reiterate through it over and over again whenever it changes.</p>
http://stackoverflow.com/questions/1553467/most-efficient-way-to-add-new-keys-or-append-to-old-keys-in-a-dictionary-during-i3Most efficient way to add new keys or append to old keys in a dictionary during iteration in Python?Gabriel Hurley2009-10-12T09:01:02Z2009-10-16T11:46:17Z
<p>Here's a common situation when compiling data in dictionaries from different sources: </p>
<p>Say you have a dictionary that stores lists of things, such as things I like:</p>
<pre><code>likes = {
'colors': ['blue','red','purple'],
'foods': ['apples', 'oranges']
}
</code></pre>
<p>and a second dictionary with some related values in it:</p>
<pre><code>favorites = {
'colors':'yellow',
'desserts':'ice cream'
}
</code></pre>
<p>You then want to iterate over the "favorites" object and either append the items in that object to the list with the appropriate key in the "likes" dictionary or add a new key to it with the value being a list containing the value in "favorites".</p>
<p>There are several ways to do this:</p>
<pre><code>for key in favorites:
if key in likes:
likes[key].append(favorites[key])
else:
likes[key] = list(favorites[key])
</code></pre>
<p>or</p>
<pre><code>for key in favorites:
try:
likes[key].append(favorites[key])
except KeyError:
likes[key] = list(favorites[key])
</code></pre>
<p>And many more as well...</p>
<p>I generally use the first syntax because it feels more pythonic, but if there are other, better ways, I'd love to know what they are. Thanks!</p>
http://stackoverflow.com/questions/1575193/ocaml-iterative-to-recursion1Ocaml - Iterative to RecursionFaisal Abid2009-10-15T21:28:26Z2009-10-16T04:46:06Z
<p>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 works fine, but i dont know how to do the recursive version.</p>
<pre><code>let romulus_iter (x:vector list ) (vec:vector) =
let vector_close_hash = Hashtbl.create 10 in
let prevkey = ref 10000.0 in (* Define previous key to be a large value since we intially want to set closefactor to prev key*)
if List.length x = 0 then
{a=0.;b=0.}
else
begin
Hashtbl.clear vector_close_hash ;
for i = 0 to (List.length x)-1 do
let vecinquestion = {a=(List.nth x i).a;b=(List.nth x i).b} in
let closefactor = vec_close vecinquestion vec in
if(closefactor < !prevkey) then
begin
prevkey := closefactor;
Hashtbl.add vector_close_hash closefactor vecinquestion
end
done;
Hashtbl.find vector_close_hash !prevkey
end;;
</code></pre>
<p>Any help will be much appreciated</p>
http://stackoverflow.com/questions/773/how-do-i-use-pythons-itertools-groupby3How do I use Python's itertools.groupby()?James Sulak2008-08-03T18:27:09Z2009-10-15T15:41:51Z
<p>I haven't been able to find an understandable explanation of how to actually use Python's itertools.groupby() function. What I'm trying to do is this: take a list - in this case, the children of an objectified lxml element - divide it into groups based on some criteria, and then later iterate over each of these groups separately.</p>
<p>I've reviewed the documentation (<a href="http://docs.python.org/lib/itertools-functions.html" rel="nofollow">http://docs.python.org/lib/itertools-functions.html</a>), and the examples, (<a href="http://docs.python.org/lib/itertools-example.html" rel="nofollow">http://docs.python.org/lib/itertools-example.html</a>), but I've had trouble trying to apply them beyond a simple list of numbers. </p>
<p>So, how do I use of itertools.groupby()? Is there another technique I should be using? Pointers to good "prerequisite" reading would also be appreciated.</p>
http://stackoverflow.com/questions/1556098/ocaml-recurssion-iteration-find-last-occurence-of-element-in-a-list1ocaml recurssion iteration- find last occurence of element in a listPolly Hollanger2009-10-12T18:21:19Z2009-10-13T08:52:51Z
<p>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 understand how to use recursion for iterating through the list...</p>
<p>let rec getLastOccurence l elem = </p>
<p>;;</p>
http://stackoverflow.com/questions/1549943/design-patterns-for-converting-recursive-algorithms-to-iterative-ones2Design patterns for converting recursive algorithms to iterative onesfbrereto2009-10-11T05:36:38Z2009-10-12T19:00:41Z
<p>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 wondering if there are practices worth keeping in mind when doing so.</p>
http://stackoverflow.com/questions/478570/recursion-or-iteration16Recursion or iteration?Tom2009-01-26T00:07:55Z2009-10-12T09:41:12Z
<p>I love recursion. I think it simplifies things a lot. Another may disagree; I think it also makes the code a lot easier to read. However, I've noticed that recursion is not used as much in languages such C# as they are in LISP (which by the way is my favorite language because of the recursion). </p>
<p>Does anybody know if there is any good reasons not use recursion in the languages such as C#? Is it more expensive than iteration?</p>
http://stackoverflow.com/questions/1547164/java-how-to-find-a-value-in-a-linked-list-iteratively-and-recursively0Java How to find a value in a linked list iteratively and recursivelyRoxy2009-10-10T05:44:48Z2009-10-11T17:00:12Z
<p>Hi</p>
<p>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 make a class,</p>
<pre><code>public class ListNode{
public ListNode (int v, ListNode n) {value = v; next = n;)
public int value;
public ListNode next;
}
</code></pre>
<p>Then, the method would start with a</p>
<pre><code>public static int findValue(ListNode x, int valueToCount){
// so would I do it like this?? I don't know how to find the value,
// like do I check it?
for (int i =0; i< x.length ;i++){
valueToCount += valueToCount;
}
</code></pre>
<p>So, I CHANGED this part, If I did this recursively, then I would have</p>
<pre><code>public static int findValue(ListNode x, int valueToCount) {
if (x.next != null && x.value == valueToCount {
return 1 + findValue(x, valueToCount);}
else
return new findvalue(x, valueToCount);
</code></pre>
<p>SO, is the recursive part correct now?</p>
http://stackoverflow.com/questions/46898/iterate-over-map17Iterate Over MapiMack2008-09-05T21:12:48Z2009-10-09T08:07:53Z
<p>If I have an object implementing the Map interface in Java and I wish to iterate over every pair contained within it, what is the most efficient way of going through the map? Will the ordering of elements depend on the specific map implementation that I have for the interface?</p>
http://stackoverflow.com/questions/1541777/can-you-remove-an-item-from-a-list-whilst-iterating-through-it-in-c2Can you remove an item from a List<> whilst iterating through it in C#Chris2009-10-09T04:24:57Z2009-10-09T06:34:05Z
<p>Can you remove an item from a List<> whilst iterating through it? Will this work, or is there a better way to do it?</p>
<p>My code:</p>
<pre><code>foreach (var bullet in bullets)
{
if (bullet.Offscreen())
{
bullets.Remove(bullet);
}
}
</code></pre>
<p>-edit- Sorry guys, this is for a silverlight game. I didn't realise silverlight was different to the Compact Framework.</p>