4
votes
1answer
47 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
96 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
53 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 …
41
votes
61answers
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 …
2
votes
4answers
122 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 …
0
votes
1answer
36 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 …
1
vote
3answers
48 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
138 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:
…
-1
votes
5answers
227 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
5answers
226 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 …
0
votes
1answer
61 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
203 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 …
16
votes
22answers
1k views
Do you pseudo-code?
Do you use pseudo-code to help you program? Does it help you write your programs faster with less bug-prone code or does it simply waste time?
Should it be standard practice to de …
7
votes
15answers
410 views
How much planning do you do before starting to code?
When you're starting a new project, how do you plan for it or how long does it take?
Pseudocode?
Flowcharts?
Do you try to think of all the classes in advance?
TBH, i never plan …
0
votes
4answers
298 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 …
