0
votes
2answers
13 views
Pseudocode for getting order based on Dependency
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
C and D have no …
5
votes
1answer
77 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 et al) and whilst …
1
vote
6answers
101 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 loop (mostly because …
0
votes
4answers
119 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 computer or its built-in …
0
votes
1answer
42 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 screen …
2
votes
4answers
131 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 it
The items have …
1
vote
3answers
81 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 handle ( )s
0
votes
5answers
141 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:
return [numPigs, …
-1
votes
5answers
266 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 concept.
0
votes
1answer
84 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.
To that effect I …
0
votes
5answers
242 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 the root to a leaf, …
0
votes
3answers
245 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+ flowcharting threads …
2
votes
4answers
126 views
Pseudo-code for shelf-stacking
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 …
0
votes
4answers
319 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 the root to a leaf, …
1
vote
2answers
49 views
Building string programatically and dealing with trailing or leading boolean operators
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 …
