42
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
…
15
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 declare what you're …
13
votes
10answers
7k views
Algorithm to calculate the number of divisors of a given number
What would be the most optimal algorithm (performance-wise) to calculate the number of divisors of a given number?
It'll be great if you could provide pseudocode or a link to some example.
EDIT: All …
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? …
8
votes
5answers
570 views
Pseudocode Programming Process vs. Test Driven Development
For those who haven't read Code Complete 2, the Pseudocode Programming Process is basically a way to design a routine by describing it in plain English first, then gradually revise it to more detailed …
7
votes
15answers
434 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 anything. I get …
5
votes
1answer
80 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 …
4
votes
3answers
561 views
Pseudocode check. Complete Coding Noob needs validation for assignment
I have already turned this in so you won't be helping me cheat. Just wondering if this looks right:
The assignment:
Input a list of employee names and salaries, and determine the
mean (average) …
4
votes
14answers
628 views
How often do you use pseudocode in the real world?
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 …
4
votes
15answers
1k views
Algorithm for generating a random number
I'm looking to generate a random number and issue it to a table in a database for a particular user_id. The catch is, the same number can't be used twice. There's a million ways to do this, but I'm …
4
votes
3answers
713 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 solve abstract …
3
votes
7answers
1k views
Path finding in a Java 2d Game?
Essentially its a pacman clone game I'm working on. I have an Enemy class, and 4 instances of this class created which all represent 4 ghosts of the game.
All ghosts start up in random areas of the …
3
votes
5answers
384 views
runnable pseudocode?
I am attempting to determine prior art for the following idea:
1) user types in some code in a language called (insert_name_here);
2) user chooses a destination language from a list of well-known …
2
votes
4answers
132 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 …
2
votes
4answers
129 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 …
