41
votes
63answers
4k views
What is your best pseudo-code phrase?
Do you have any clever pseudo-code phrases? Maybe a common phrase that has analogous pseudo-code? What's your best one?
For example, one I've seen, from bash.org:
A programmer …
5
votes
1answer
64 views
transitive reduction algorithm: pseudocode?
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 …
1
vote
6answers
98 views
What is the correct way to convert from a for loop to a while loop?
I have a for loop of the form:
for (int i = from; i < to; i++) {
// do some code (I don't know exactly what, it is subject to change)
}
And I want to convert it to a while …
0
votes
4answers
83 views
Convert Array of Decimal Digits to an Array of Binary Digits
This is probably a quite exotic question.
My Problem is as follows:
The TI 83+ graphing calculator allows you to program on it using either Assembly and a link cable to a compute …
0
votes
1answer
38 views
Implement a listbox
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 …
2
votes
4answers
128 views
2D World design question
I'm facing a problem which is probably extremely common in game-design.
Let's assume that we've got a 2D world
The world's size is M x N rect
The world may contain some items in …
1
vote
3answers
61 views
Pseudo Code for converting infix to postfix.
I'm struggling getting the pseudo code for this.
Scan string left to right for each char
If operand add it to string
Else if operator add to stack
....
i'm struggling on how to h …
0
votes
5answers
140 views
Understanding an example
def solve(numLegs, numHeads):
for numChicks in range(0, numHeads + 1):
numPigs = numHeads - numChicks
totLegs = 4*numPigs + 2*numChicks
if totLegs == numLegs:
…
0
votes
5answers
229 views
Shortest branch in a binary tree?
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.
A branch of a tree is a path from t …
2
votes
1answer
518 views
survey results in sharepoint
how do i get a list of user that have completed or not completed or not responded to a survey.
so i have a survey, lets say "survey A". in this survey i have a list of people or …
-1
votes
5answers
239 views
Python - Writing pseudocode?
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)
I don't quite get the pseudocode concep …
0
votes
1answer
70 views
Pseudo-code question from some MIT courseware
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.
…
0
votes
3answers
221 views
What or where is this basic pseudocode flowcharting program?
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+ f …
0
votes
4answers
303 views
Algorithm to return length of shortest branch in a binary tree
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.
A branch of a tree is a path from …
4
votes
3answers
696 views
What is the best solution for the ‘Students and Lockers’ problem?
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 …
