active questions tagged pseudocode - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T08:40:04Zhttp://stackoverflow.com/feeds/tag/pseudocodehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/110344/algorithm-to-calculate-the-number-of-divisors-of-a-given-number13Algorithm to calculate the number of divisors of a given numbersker2008-09-21T05:44:34Z2009-12-20T23:53:09Z
<p>What would be the most optimal algorithm (performance-wise) to calculate the number of divisors of a given number?</p>
<p>It'll be great if you could provide pseudocode or a link to some example.</p>
<p>EDIT: All the answers have been very helpful, thank you. I'm implementing the Sieve of Atkin and then I'm going to use something similar to what Jonathan Leffler indicated. The link posted by Justin Bozonier has further information on what I wanted.</p>
http://stackoverflow.com/questions/1932545/job-scheduling-problem1Job scheduling problemZahymaka2009-12-19T10:20:01Z2009-12-19T12:09:45Z
<p>I'm working on an application where I need to automatically schedule jobs for members on a rotating schedule. I'm not very good at explaining rules, so here's some data to help out:</p>
<p>Positions: A job title, with rules such as Mondays and Wednesdays weekly.<br>
Categories: A set of positions<br>
Groups: Another set of positions. Positions in the same group cannot be assigned on the same day<br>
Members: Users assigned to positions on a given date.</p>
<p>For each date in the month, members are assigned to positions (both in ascending order). If a member is assigned to a position in one category, the next time a position in the same category comes up, the next member alphabetically (or the beginning of the list) gets assigned eg.</p>
<p>Members: M1, M2, M3, M4<br>
Positions in Category C1: P1, P2, P3<br>
Members in Position P1: M1, M2, M3, M4<br>
Members in Position P2: M1, M2, M3<br>
Members in Position P2: M1, M3, M4</p>
<p>If M1 is assigned for P1, if P2 comes next, M2 will be assigned. An additional layer of complexity is introduced where if P3 comes next instead, M3 gets assigned. The system has to keep track of the fact that M2 was 'skipped' and assign M2 next if available, then assign M4 next, or wait until it gets to a position where M2 is available (this becomes additionally complex when there are many 'skipped' members).</p>
<p>A member will also be skipped if he has indicated he won't be available on that date. The system needs to place priority on skipped members, somehow identify them when they come up and then jump to the next logical person in the list. Skipping also applies to groups due to date clashes.</p>
<p>I already have a temporary [and messy] solution which I no longer understand even though I have a lot of comments in it explaining each step. Its weaknesses are in dealing with the skipped members.</p>
<p>If you were going to code this how would you go about it? I'm implementing this in PHP but pseudocode would work as well.</p>
http://stackoverflow.com/questions/1918772/explain-this-dsp-notation2Explain this DSP notationGrumdrig2009-12-17T00:34:21Z2009-12-17T00:59:10Z
<p>I'm trying to implement <a href="http://www.dsprelated.com/dspbooks/pasp/Extended%5FKarplus%5FStrong%5FAlgorithm.html" rel="nofollow">this extenstion</a> of the Karplus-Strong plucked string algorithm, but I don't understand the notation there used. Maybe it will take years of study, but maybe it won't - maybe you can tell me. </p>
<p>I think the equations below are in the frequency domain or something. Just starting with the first equation, H<sub>p</sub>(z), the pick direction lowpass filter. For one direction you use p = 0, for the other, perhaps 0.9. This boils down to to 1 in the first case, or 0.1 / (1 - 0.9 z<sup>-1</sup>) in the second.</p>
<p><img src="http://www.dsprelated.com/josimages/pasp/img902.png" alt="alt text"></p>
<p>Now, I feel like this might mean, in coding terms, something towards:</p>
<pre><code>H_p(float* input, int time) {
if (downpick) {
return input[time];
} else {
return some_function_of(input[t], input[t-1]);
}
}
</code></pre>
<p>Can someone give me a hint? Or is this futile and I really need all the DSP background to implement this? I was a mathematician once...but this ain't my domain.</p>
http://stackoverflow.com/questions/1903966/getting-a-list-of-all-churches-in-a-certain-state-using-python0Getting a list of all churches in a certain state using Python.lpthnc2009-12-14T22:29:44Z2009-12-14T23:34:17Z
<p>Hi, I am pretty good with Python, so pseudo-code will suffice when details are trivial. Please get me started on the task - how do go about crawling the net for the snail mail addresses of churches in my state. Once I have a one liner such as "123 Old West Road #3 Old Lyme City MD 01234", I can probably parse it into City, State, Street, number, apt with enough trial and error. My problem is - if I use white pages online, then how do I deal with all the HTML junk, HTML tables, ads, etc? I do not think I need their phone number, but it will not hurt - I can always throw it out once parsed. Even if your solution is half-manual (such as save to pdf, then open acrobat, save as text) - I might be happy with it still. Thanks! Heck, I will even accept Perl snippets - I can translate them myself.</p>
http://stackoverflow.com/questions/1882092/pseudocode-for-getting-order-based-on-dependency0Pseudocode for getting order based on DependencyThorDivDev2009-12-10T16:12:34Z2009-12-10T16:18:16Z
<p>Ok, my situation is this I have a list of items and I need to get the order of these items based on the references they have. For example lets say we have these items:
A,B,C,D,E,F</p>
<p>C and D have no dependencies so their order can be 0.
B is the one that has the most with C, D and A.
A has C
and F has A and B</p>
<pre><code> C D
| \ /
A /
/ | /
| B
\ |
F
</code></pre>
<p>In this case
C,D = 0
A = 1
B= 2
F = 3</p>
<p>I have been looking through the internet and it seems I am not using the correct scientific term for this. Most probably it is a Set or a Bag set in some way. I know it is not a tree as this situation has more than two edges on each node. The answer can be in a programming language, just trying to make it as general as possible.</p>
http://stackoverflow.com/questions/660972/what-is-your-best-pseudo-code-phrase42What is your best pseudo-code phrase?Chris2009-03-19T03:33:18Z2009-12-05T21:05:24Z
<p>Do you have any clever pseudo-code phrases? Maybe a common phrase that has analogous pseudo-code? What's your best one? </p>
<p>For example, one I've seen, from <a href="http://www.bash.org/?845468" rel="nofollow">bash.org</a>:</p>
<blockquote>
<pre>A programmer started to cuss
Because getting to sleep was a fuss
As he lay there in bed
Looping 'round in his head
was: while(!asleep()) sheep++</pre>
</blockquote>
<p>One I thought of/use:</p>
<ul>
<li>"Skills to pay the bills": <code>foreach(bill) paywith(skill)</code></li>
</ul>
<p>Have any to share?</p>
<p>What would you call these if you gave them a name?</p>
http://stackoverflow.com/questions/164163/choosing-a-pivot-for-quicksort11Choosing a pivot for Quicksort?Jacob T. Nielsen2008-10-02T19:37:42Z2009-11-28T16:16:39Z
<p>When implementing Quicksort one of the things you have to do is choose a pivot. But when I look at pseudocode like the one below. It is not clear how is should choose the pivot. First element of list? Something else?</p>
<pre><code> function quicksort(array)
var list less, greater
if length(array) ≤ 1
return array
select and remove a pivot value pivot from array
for each x in array
if x ≤ pivot then append x to less
else append x to greater
return concatenate(quicksort(less), pivot, quicksort(greater))
</code></pre>
<p>Can someone help me grasp the concept of choosing a pivot and whether or not different senarios call for different strategies.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1690953/transitive-reduction-algorithm-pseudocode5transitive reduction algorithm: pseudocode?girlwithglasses2009-11-06T22:33:08Z2009-11-07T15:42:18Z
<p>I have been looking for an algorithm to perform a transitive reduction on a graph, but without success. There's nothing in my algorithms bible (Introduction To Algorithms by Cormen et al) and whilst I've seen plenty of transitive closure pseudocode, I haven't been able to track down anything for a reduction. The closest I've got is that there is one in "Algorithmische Graphentheorie" by Volker Turau (ISBN:978-3-486-59057-9), but unfortunately I don't have access to this book! Wikipedia is unhelpful and Google is yet to turn up anything. :^(</p>
<p>Does anyone know of an algorithm for performing a transitive reduction?</p>
http://stackoverflow.com/questions/1668886/what-is-the-correct-way-to-convert-from-a-for-loop-to-a-while-loop1What is the correct way to convert from a for loop to a while loop?Guss2009-11-03T17:26:39Z2009-11-03T17:38:50Z
<p>I have a for loop of the form:</p>
<pre><code>for (int i = from; i < to; i++) {
// do some code (I don't know exactly what, it is subject to change)
}
</code></pre>
<p>And I want to convert it to a while loop (mostly because I want to play with the value of <code>i</code> inside the loop to go backwards and forwards and my co-worker thinks that doing this in a for loop is prone to problems. I tend to agree with him). So I wrote something like this:</p>
<pre><code>int i = from;
while (i < to) {
try {
// do some code (I don't know exactly what, it is subject to change)
} finally {
i++;
}
}
</code></pre>
<p>Which prompted some some loud comments. My reasoning is that you don't know what the code inside the loop does - it may (and does) have multiple <code>continue</code> commands.</p>
<p>As a response he wrote this:</p>
<pre><code>int i = from - 1;
while (++i < to) {
// do some code (I don't know exactly what, it is subject to change)
}
</code></pre>
<p>Granted its less lines, but I still think my code is more elegant - what do you think? </p>
http://stackoverflow.com/questions/1657014/convert-array-of-decimal-digits-to-an-array-of-binary-digits0Convert Array of Decimal Digits to an Array of Binary Digitswsd2009-11-01T12:10:35Z2009-11-01T13:40:14Z
<p>This is probably a quite exotic question.</p>
<p>My Problem is as follows:</p>
<p>The TI 83+ graphing calculator allows you to program on it using either Assembly and a link cable to a computer or its built-in TI-BASIC programming language.</p>
<p>According to what I've found, it supports only 16-Bit Integers and some emulated floats.</p>
<p>I want to work with a bit larger numbers however (around 64 bit), so for that I use an array with the single digits:</p>
<pre><code>{1, 2, 3, 4, 5}
</code></pre>
<p>would be the Decimal 12345.</p>
<p>In binary, that's 110000 00111001, or as a binary digit array:</p>
<pre><code>{1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1}
</code></pre>
<p>which would be how the calculator displays it.</p>
<p>How would i go about converting this array of decimal digits (which is too large for the calculator to display it as a native type) into an array of decimal digits?</p>
<p>Efficiency is not an issue. This is NOT homework.</p>
<p>This would leave me free to implement Addition for such arrays and such.</p>
<p>thanks!</p>
http://stackoverflow.com/questions/1594589/implement-a-listbox0Implement a listboxfoosion2009-10-20T13:24:01Z2009-10-20T16:01:29Z
<p>I need to implement a listbox for a mobile. The only relevant controls are up and down arrow keys. The listbox should display as many rows of items from a list as will fit on the screen (screen_rows), one row should be highighted (sel_row) and the display should wrap if the user hits up arrow when the first item is highlighted or down arrow if the last item is highlighted (that is, the last item should be displayed and highlighted if the user hits up when the first item is highlighted). Up arrow highlights the previous item and down arrow highlights the next item.</p>
<p>I've put something together, but am concerned I've missed something in testing. There must be a standard way to do this, given the prevalence of listboxes out there.</p>
<pre><code>def up_key(self):
if self.sel_row > 0:
self.sel_row -= 1
elif self.top_item > 0: # top_item is the index of the first list item
self.top_item -= 1
elif self.top_item == 0:
if self.n_lines >= self.screen_rows: # n_lines is the number of items in the list
self.top_item = self.n_lines - self.screen_rows
self.sel_row = min(self.screen_rows-1, self.n_lines-1)
else:
self.top_item = 0
self.sel_row = self.n_lines-1
def down_key(self):
if self.sel_row < self.screen_rows-1 and self.sel_row < self.n_lines-1:
self.sel_row += 1
elif self.sel_row == self.screen_rows-1:
bottom_item = self.top_item + self.screen_rows
if bottom_item == self.n_lines:
self.top_item = 0
self.sel_row = 0
if bottom_item < self.n_lines:
self.top_item += 1
elif self.sel_row == self.n_lines-1:
self.top_item = 0
self.sel_row = 0
def set_pos(self, pos): # display item with index pos
if pos < 0:
pos = 0
elif pos >= self.n_lines:
pos = self.n_lines - 1
if pos < self.screen_rows:
self.top_item = 0
self.sel_row = pos
else:
self.sel_row = min(self.screen_rows, self.n_lines)//2 - 1
self.top_item = pos - self.sel_row
if self.top_item >= self.n_lines - self.screen_rows:
self.top_item = self.n_lines - self.screen_rows - 1
self.sel_row = pos - self.top_item - 1
</code></pre>
<p>EDIT: after each function I call a redraw screen function, which redraws the screen with top_item at the top and sel-row highlighted. </p>
<p>I've added a pseudo-code tag, in case someone has a version in something that's not python.</p>
http://stackoverflow.com/questions/1590516/2d-world-design-question2 2D World design question Maciek2009-10-19T19:12:06Z2009-10-20T13:37:52Z
<p>I'm facing a problem which is probably extremely common in game-design.</p>
<ol>
<li>Let's assume that we've got a 2D world</li>
<li>The world's size is M x N rect</li>
<li>The world may contain some items in it</li>
<li>The items have (x,y) coords</li>
<li>The world can be browsed via a window that is physically (m x n) large.</li>
<li>The browser window can be zoomed in / out</li>
<li>The browser window can be panned up/down + left right, while in the extents of the world's rect.</li>
</ol>
<p>How should I go about implementing this? I'm especially concerned about the browser window. Can anyone recommend any good reads ?</p>
<p>This is not a homework - it's more of a task which I've set myself to complete.</p>
http://stackoverflow.com/questions/1583541/pseudo-code-for-converting-infix-to-postfix1Pseudo Code for converting infix to postfix.Jeremiah2009-10-17T23:52:23Z2009-10-18T01:11:17Z
<p>I'm struggling getting the pseudo code for this.</p>
<p>Scan string left to right for each char
If operand add it to string
Else if operator add to stack
....</p>
<p>i'm struggling on how to handle ( )s</p>
http://stackoverflow.com/questions/1549828/understanding-an-example0Understanding an exampleNimbuz2009-10-11T04:08:09Z2009-10-12T03:59:11Z
<pre><code>def solve(numLegs, numHeads):
for numChicks in range(0, numHeads + 1):
numPigs = numHeads - numChicks
totLegs = 4*numPigs + 2*numChicks
if totLegs == numLegs:
return [numPigs, numChicks]
return [None, None]
def barnYard(heads, legs):
pigs, chickens = solve(legs, heads)
if pigs == None:
print "There is no solution."
else:
print 'Number of pigs: ', pigs
print 'Number of Chickens: ', chickens
</code></pre>
<p>I'm learning Python and came across this example, can someone please explain in plain english (or pseudo-code) what this is doing line by line.</p>
<p>Many thanks</p>
http://stackoverflow.com/questions/1344969/shortest-branch-in-a-binary-tree0Shortest branch in a binary tree?helen2009-08-28T04:07:08Z2009-10-05T02:13:45Z
<p>A binary tree can be encoded using two functions l and r
such that for a node n, l(n) give the left child of n, r(n)
give the right child of n.</p>
<p>A branch of a tree is a path from the root to a leaf, the
length of a branch to a particular leaf is the number of
arcs on the path from the root to that leaf.</p>
<p>Let MinBranch(l,r,x) be a simple recursive algorithm for
taking a binary tree encoded by the l and r functions
together with the root node x for the binary tree and
returns the length of the shortest branch of the binary
tree.</p>
<p>Give the pseudocode for this algorithm.</p>
<p>OK, so basically this is what I've come up with so far:</p>
<pre><code>MinBranch(l, r, x)
{
if x is None return 0
left_one = MinBranch(l, r, l(x))
right_one = MinBranch(l, r, r(x))
return {min (left_one),(right_one)}
}
</code></pre>
<p>Obviously this isn't great or perfect. I'd be greatful if
people can help me get this perfect and working - any help
will be appreciated.</p>
http://stackoverflow.com/questions/332984/survey-results-in-sharepoint2survey results in sharepointAdyt2008-12-02T03:47:28Z2009-10-03T12:17:11Z
<p>how do i get a list of user that have completed or not completed or not responded to a survey. </p>
<p>so i have a survey, lets say "survey A". in this survey i have a list of people or groups that must fill the survey. sharepoint already gives us a list of respondents, but i want to make a list of people that have not responded or not completed the survey.</p>
<p>i'm using c#, thanks..</p>
http://stackoverflow.com/questions/1452237/python-writing-pseudocode0Python - Writing pseudocode?Benjamin2009-09-20T22:52:36Z2009-09-21T00:49:35Z
<p>How would you write pseudocode for drawing an 8-by-8 checkerboard of squares, where none of the squares have to be full? (Can all be empty)</p>
<p>I don't quite get the pseudocode concept.</p>
http://stackoverflow.com/questions/1426840/pseudo-code-question-from-some-mit-courseware0Pseudo-code question from some MIT coursewareLasse V. Karlsen2009-09-15T12:19:35Z2009-09-15T12:40:26Z
<p>I've never had much need for writing large quantities of formal pseudo-code but the need has arisen, so I thought I'd pick some standards in order to stay consistent across code.</p>
<p>To that effect I picked up some "iTunes U" courseware videos, amongst other things the <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-046JFall-2005/CourseHome/" rel="nofollow">6.046J / 18.410J Introduction to Algorithms (SMA 5503)</a>.</p>
<p>In the very first lecture video, the lecturer writes Insertion Sort on the blackboard, and he writes this:</p>
<pre><code>Insertion-Sort(A, N) // Sorts A[1..n]
for j ← 2 to n
do key ← A[j]
i ← j-1
while i > 0 and A[i] > key
do A[i+1] ← A[i]
i ← i-1
A[i+1] ← key
</code></pre>
<p>So, my questions:</p>
<ul>
<li>Why <code>i ← j-1</code> when <code>A[i+1] = key</code>? That is, why <code>←</code> in some cases, and <code>=</code> in another? Note that in the above code, the <code>←</code> is used for the latter too, but in the handouts, available on the web, <code>=</code> is used, is this simply a typo? (I assume so)</li>
<li>More important, why <code>do key ← A[j]</code> when <code>i ← j-1</code>? What is so special that it requires a <code>do</code> command like that, and an indentation?</li>
</ul>
<p>In other words, why isn't the above pseudo-code written like this (with my highlights):</p>
<pre><code>Insertion-Sort(A, N) // Sorts A[1..n]
for j ← 2 to n
key ← A[j] <-- lost the do here
i ← j-1 <-- no indentation
while i > 0 and A[i] > key
A[i+1] ← A[i] <-- lost the do here
i ← i-1 <-- no indentation
A[i+1] ← key
</code></pre>
<p>Final question: Does anyone have a <em>code standard</em> for pseudo-code handy somewhere? My main goal is consistency, so that I only have to "teach" the recipients once.</p>
http://stackoverflow.com/questions/1284376/what-or-where-is-this-basic-pseudocode-flowcharting-program0What or where is this basic pseudocode flowcharting program?Maslow2009-08-16T14:06:11Z2009-09-10T19:04:23Z
<p>I'm looking for a specific program I've seen 2-3 people use in college that automatically generated flow charts from pseudocode. I've looked at every link I could find in the 20+ flowcharting threads here on S.O. I did not see the one I am looking for, I've googled and no luck. A fairly simple, flow chart would actually be generated by the if-then-else, while, for loop coding you typed on the left hand side. and a mostly vertical flow chart would be on the right hand side.</p>
<p>I thought the coding was somewhat closely resembled to basic or C.</p>
<p>Anyone know what tool it is?</p>
http://stackoverflow.com/questions/1220579/algorithm-to-return-length-of-shortest-branch-in-a-binary-tree0Algorithm to return length of shortest branch in a binary treehelen2009-08-03T03:30:12Z2009-09-05T22:23:54Z
<p>A binary tree can be encoded using two functions l and r such that for a node n, l(n) give the left child of n , r(n) give the right child of n.</p>
<p>A branch of a tree is a path from the root to a leaf, the length of a branch to a particular leaf is the number of arcs on the path from the root to that leaf.</p>
<p>Let MinBranch(l,r,x) be a simple recursive algorithm for taking a binary tree encoded by the l and r functions together with the root node x for the binary tree and returns the shortest branch of the binary tree.</p>
<p>Please provide the pseudocode for this algorithm.</p>
http://stackoverflow.com/questions/272868/what-is-the-best-solution-for-the-students-and-lockers-problem4What is the best solution for the 'Students and Lockers' problem?Erick2008-11-07T17:31:21Z2009-08-12T15:43:14Z
<p>I thought that it would be fun to present some classic CS problems and let people show their algorithm optimization skills. The hope is that we get to see some clever techniques to solve abstract problems that we may be able to implement in practice.</p>
<p>Ideally solutions would be presented in pseudo code with a big O classification. Proof of that classification is gravy. On to the problem:</p>
<p>There are N closed lockers and N students present. The first student opens each locker. The second student opens or closes every second locker. This continues where the nth student opens and closes every nth locker. After N students what lockers are open? How many lockers are open?</p>
http://stackoverflow.com/questions/1223070/pseudo-code-for-shelf-stacking2Pseudo-code for shelf-stackingDycey2009-08-03T15:43:50Z2009-08-04T08:40:41Z
<p>Suppose I have some serially numbered items that are 1-n units wide, that need to be displayed in rows. Each row is m units wide. I need some pseudo-code that will output the rows, for me, so that the m-width limit is kept. This is not a knapsack problem, as the items must remain in serial number order - empty spaces at the end of rows are fine.</p>
<p>I've been chasing my tail over this, partly because I need it in both PHP and jQuery/javascript, hence the request for pseudo-code....</p>
http://stackoverflow.com/questions/1203675/building-string-programatically-and-dealing-with-trailing-or-leading-boolean-oper1Building string programatically and dealing with trailing or leading boolean operatorsMatt2009-07-29T23:40:05Z2009-07-30T01:16:55Z
<p>I am using Lucene in an application. As such I have a form that lets users build a query by selecting what they want to search from dropdowns.
Once a user submits, I build the query and it comes down to something like this:</p>
<pre><code>var formedQuery= string.Empty;
foreach(var field in fields)
{
if (field.name != 'condition so you never know which field from fields will be 1st')
formedQuery += " AND" + field.name + ":" field.value;
}
</code></pre>
<p>Now the problem with this is that the statement will begin with ' AND'</p>
<p>Now I usually finish with:</p>
<pre><code>formedQuery = formedQuery.Substring(4) //Trim the first 4 characters
</code></pre>
<p>Would fellow programmers usually prefer to do:</p>
<pre><code>var formedQuery= string.Empty;
var i = false;
foreach(var field in fields)
{
if (false &&
field.name != 'condition so you never know which field from fields will be 1st')
{
formedQuery += " AND" + field.name + ":" field.value;
i = true;
}
else
formedQuery += " " + field.name + ":" field.value;
}
</code></pre>
<p>Is there another technique people like to use for this sort of thing I am not thinking of?
I prefer the former.</p>
http://stackoverflow.com/questions/713508/find-the-paths-between-two-given-nodes2Find the paths between two given nodes?yesraaj2009-04-03T11:09:18Z2009-07-20T02:22:14Z
<p>Say I have nodes connected in the below fashion, how do I arrive at the number of paths that exist between given points, and path details?</p>
<pre><code>1,2 //node 1 and 2 are connected
2,3
2,5
4,2
5,11
11,12
6,7
5,6
3,6
6,8
8,10
8,9
</code></pre>
<p>Find the paths from 1 to 7: </p>
<p>Answer:
2 paths found and they are </p>
<pre><code>1,2,3,6,7
1,2,5,6,7
</code></pre>
<p><img src="http://farm4.static.flickr.com/3120/3409325514%5F68840abcb8.jpg" alt="alt text" /></p>
<p>implementation found <a href="http://code.activestate.com/recipes/576675/" rel="nofollow">here</a> is nice I am going to use the same</p>
<p>Here is the snippet from the above link in python</p>
<pre><code># a sample graph
graph = {'A': ['B', 'C','E'],
'B': ['A','C', 'D'],
'C': ['D'],
'D': ['C'],
'E': ['F','D'],
'F': ['C']}
class MyQUEUE: # just an implementation of a queue
def __init__(self):
self.holder = []
def enqueue(self,val):
self.holder.append(val)
def dequeue(self):
val = None
try:
val = self.holder[0]
if len(self.holder) == 1:
self.holder = []
else:
self.holder = self.holder[1:]
except:
pass
return val
def IsEmpty(self):
result = False
if len(self.holder) == 0:
result = True
return result
path_queue = MyQUEUE() # now we make a queue
def BFS(graph,start,end,q):
temp_path = [start]
q.enqueue(temp_path)
while q.IsEmpty() == False:
tmp_path = q.dequeue()
last_node = tmp_path[len(tmp_path)-1]
print tmp_path
if last_node == end:
print "VALID_PATH : ",tmp_path
for link_node in graph[last_node]:
if link_node not in tmp_path:
#new_path = []
new_path = tmp_path + [link_node]
q.enqueue(new_path)
BFS(graph,"A","D",path_queue)
-------------results-------------------
['A']
['A', 'B']
['A', 'C']
['A', 'E']
['A', 'B', 'C']
['A', 'B', 'D']
VALID_PATH : ['A', 'B', 'D']
['A', 'C', 'D']
VALID_PATH : ['A', 'C', 'D']
['A', 'E', 'F']
['A', 'E', 'D']
VALID_PATH : ['A', 'E', 'D']
['A', 'B', 'C', 'D']
VALID_PATH : ['A', 'B', 'C', 'D']
['A', 'E', 'F', 'C']
['A', 'E', 'F', 'C', 'D']
VALID_PATH : ['A', 'E', 'F', 'C', 'D']
</code></pre>
http://stackoverflow.com/questions/434128/how-to-find-the-value-of-a-neuron-in-a-neural-network1How to find the value of a neuron in a neural networksurprise_2009-01-12T00:44:19Z2009-07-19T05:25:21Z
<p>Since a lot of these sites found on google use mathematical notation and I have no idea what any of it means I want to make a feedforward neural network like this:</p>
<pre><code> n1
i1 n3
n2 o1
i2 n4
n3
</code></pre>
<p>Now can someone explain to me how to find the value of o1? How is it possible to make a neuron active when none of its inputs are active?</p>
http://stackoverflow.com/questions/1130461/ruby-code-translation-request0Ruby Code Translation Requestsipwiz2009-07-15T09:51:55Z2009-07-15T11:09:56Z
<p>I have negligible Ruby syntax knowledge and was hoping someone would be kind enough to translate the function below into pseudo code and possibly provide an example of how it would be called?</p>
<pre><code>def in_list(num, list)
list = [*list]
list.each {|a,b| return (b)? num.sub(a,b) : a if num =~ a}
nil
end
</code></pre>
http://stackoverflow.com/questions/360454/how-often-do-you-use-pseudocode-in-the-real-world4How often do you use pseudocode in the real world?Kyle Walsh2008-12-11T18:53:19Z2009-07-10T04:05:37Z
<p>Back in college, only the use of pseudo code was evangelized more than OOP in my curriculum. Just like commenting (and other preached 'best practices'), I found that in crunch time psuedocode was often neglected. So my question is...who actually uses it a lot of the time? Or do you only use it when an algorithm is really hard to conceptualize entirely in your head? I'm interested in responses from everyone: wet-behind-the-ears junior developers to grizzled vets who were around back in the punch card days.</p>
<p>As for me personally, I mostly only use it for the difficult stuff.</p>
http://stackoverflow.com/questions/984218/pseudocode-check-complete-coding-noob-needs-validation-for-assignment4Pseudocode check. Complete Coding Noob needs validation for assignmentlazfish2009-06-11T23:02:49Z2009-07-08T19:53:36Z
<p>I have already turned this in so you won't be helping me cheat. Just wondering if this looks right:</p>
<p>The assignment:
Input a list of employee names and salaries, and determine the
mean (average) salary as well as the number of salaries above and
below the mean.</p>
<p>The Plan:
Allow input of names and salaries
Calculate Mean
Sort values
Count values above Mean
Count values below Mean</p>
<pre><code>//This program will allow a user to input an employee name and salary
//The output will contain the mean salary
//as well as the number of salaries above and below the mean
//
//Arrays Used:
//Name(K) = Array for employee names
//Salary(K) = Array for salaries
//
//Variables Used:
//Mean = Mean of all employees Salaries
//UpMean = Number of Employees making more than the mean
//DwnMean = Number of Employees making less than the mean
//Sum = Sum of all salaries
//CountM = Counter for Mean
//CountUp = Counter for # of salaries above mean
//CountDwn = Counter for # of salaries below mean
Main
Call WelcomeMessage
Call InputData
Call Calculate
Call OutputData
End Program
WelcomeMessage
Write, “Beginning the Salary Program”
End WelcomeMessage
InputData
Declare Name(100) Of Strings
Declare Salary(100) Of Real
Declare Mean, UpMean, DwnMean As Real
Set Sum = 0
Set CountM = 0
Set CountUp = 0
Set CountDwn = 0
Write, "Enter Employee name and Salary."
Write, "Enter *,0 when done."
Input Name(K), Salary(K)
While Name(K) <> "*"
Set CountM = CountM + 1
Set Sum = Sum + Salary
Write, "Enter Employee name and Salary."
Write, "Enter *,0 when done."
Input Name(K), Salary(K)
End While
End InputData
Calculation
//Here Mean is found
Set Mean = Sum / CountM
//Here Number of Employees making more than the mean is found
For K = Step 1 to CountM
If Salary(K) > Mean Then
Set CountUp = CountUp + 1
End If
//Here Number of Employees making more than the mean is found
Set CountDwn = CountM - CountUp
//The above algorythm doesn't account for the possibility
//of someone making exactly the average so subtract 1 to reconcile
If Salary(K) = Mean Then
Set CountDwn = CountDwn - 1
End If
End Calculation
OutputData
Write, "There were," CountM, "salaries entered."
Write, "The mean salary is:", Mean
Write, "There are", CountUp, "employees who make more than the average"
Write, "There are", CountDwn, "employees who make less than the average"
End OutputData
</code></pre>
http://stackoverflow.com/questions/1084794/folder-searching-algorithm0Folder searching algorithmDycey2009-07-05T20:43:21Z2009-07-05T23:04:24Z
<p>Not sure if this is the usual sort of question that gets asked around here, or if I'll get any answers to this one, but I'm looking for a pseudo-code approach to generating DB linking records from a folder structure containing image files.</p>
<p>I have a set of folders, structured as folllows:</p>
<pre><code>+-make_1/
| +--model_1/
| +-default_version/
| | +--1999
| | +--2000
| | | +--image_01.jpg
| | | +--image_02.jpg
| | | +--image_03.jpg
| | | ...
| | +--2001
| | +--2002
| | +--2003
| | ...
| | +--2009
| +--version_1/
| | +--1999
| | ...
| | +--2009
| +--version_2/
| | +--1999
| | +--2000
| | +--2001
| | | +--image_04.jpg
| | | +--image_05.jpg
| | | +--image_06.jpg
| | | ...
| | +--2002
| | +--2003
| | | +--image_07.jpg
| | | +--image_08.jpg
| | | +--image_09.jpg
| | ...
| | +--2009
... ... ...
</code></pre>
<p>In essence, it represents possible images for vehicles, by year starting in 1999.</p>
<p>Makes and models (e.g. Make: Alfa Romeo, Model: 145) come in various trims or versions. Each trim, or version may be found in a number of vehicles which will look the same but have say differences in fuel type or engine capacity.</p>
<p>To save duplication, the folder structure above makes use of a default folder... And images appear for the default version from 2000 onwards. I need to produce the links table for each version - based on whether the have their own overriding images, or whether make use of the default version...</p>
<p>So for example, version_1 has no image files, so I need to make links for to the default images, starting in 2000 and continuing until 2009.</p>
<p>Version 2 on the other hand starts out using the default images in 2000, but then uses two new sets first for 2001-2002, and then 2003-2009. The list of links required are therefore...</p>
<pre><code>version start end file_name
======= ===== ===== =========
version_1 2000 2009 image_01.jpg
version_1 2000 2009 image_02.jpg
version_1 2000 2009 image_03.jpg
...
version_2 2000 2001 image_01.jpg
version_2 2000 2001 image_02.jpg
version_2 2000 2001 image_03.jpg
version_2 2001 2003 image_04.jpg
version_2 2001 2003 image_05.jpg
version_2 2001 2003 image_06.jpg
version_2 2003 2009 image_07.jpg
version_2 2003 2009 image_08.jpg
version_2 2003 2009 image_09.jpg
...
</code></pre>
<p>(Default is just that - a place holder, and no links are required for it.)</p>
<p>At the moment I'm running through the folders, building arrays, and then trimming the fat at the end. I was just wondering if there was a short cut, using some sort of text-processing approach? There are about 45,000 folders, most of which are empty :-)</p>
http://stackoverflow.com/questions/983873/how-much-planning-do-you-do-before-starting-to-code7How much planning do you do before starting to code?lyrae2009-06-11T21:40:37Z2009-06-12T03:35:12Z
<p>When you're starting a new project, how do you plan for it or how long does it take?</p>
<p>Pseudocode?
Flowcharts?</p>
<p>Do you try to think of all the classes in advance?</p>
<p>TBH, i never plan anything. I get straight to it and think of solutions as problems arise. Mostly because the few times i tried planning in advance, i would always forget something major, and thus the logic of the planning would be flawed.</p>