11
votes
7answers
3k views
Choosing a pivot for Quicksort?
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? …
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 started to cuss
…
5
votes
1answer
66 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
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 loop (mostly because …
0
votes
4answers
94 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
41 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
129 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
69 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, …
0
votes
5answers
236 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, …
2
votes
1answer
525 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 groups that must …
-1
votes
5answers
243 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
71 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
3answers
227 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 …
0
votes
4answers
313 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, …
