Tagged Questions
Pseudocode is a compact and informal high-level description of a computer programming algorithm.
91
votes
6answers
3k views
What are the mathematical/computational principles behind this game?
My kids have this fun game called Spot It! The game constraints (as best I can describe) are:
It is a deck of 55 cards
On each card are 8 unique pictures (i.e. a card can't have 2 of the same ...
88
votes
69answers
8k views
What is your best pseudo-code phrase? [closed]
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
...
44
votes
15answers
35k 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 ...
27
votes
12answers
806 views
Optimizing queries for the next and previous element
I am looking for the best way to retrieve the next and previous records of a record without running a full query. I have a fully implemented solution in place, and would like to know whether there are ...
25
votes
25answers
2k 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 ...
19
votes
8answers
14k 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? ...
13
votes
4answers
1k 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 ...
11
votes
5answers
396 views
Writing pseudocode for parallel programming
How do you write pseudo-code for parallel programming? Especially, how do you differentiate local and shared variables? How do you represent operations like scatter, gather, reduce, broadcast, and ...
11
votes
3answers
302 views
Algorithm to reach a number in a fixed amount of steps using addition, division and multiplication only
Working on a game at work and at one point in the game the player is tossed into a bonus game. The amount they need to win is predetermined, however we'd like to come up with an algorithm which uses ...
10
votes
16answers
992 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 ...
10
votes
6answers
1k 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 ...
9
votes
6answers
1k views
How to generate n different colors for any natural number n?
Say n = 100; How do I generate 100 visually distinct colors? Is this mathematically possible?
8
votes
2answers
140 views
Finding shortest repeating cycle in word?
I'm about to write a function which, would return me a shortest period of group of letters which would eventually create a given word.
For example word abkebabkebabkeb is created by repeated kebab ...
8
votes
7answers
388 views
What constitutes as fair use for code?
I was wondering what constitutes as fair use for code. For example, implementing a flood fill from pseudocode from Wiki. Or if a user here gives pseudocode, does your implementation of their ...
8
votes
3answers
674 views
Job scheduling problem
I'm working on an application where I need to automatically schedule jobs for members on a rotating schedule. I'm not very good at explaining rules, so here's some data to help out:
Positions: A job ...
8
votes
6answers
12k views
Find the paths between two given nodes?
Say I have nodes connected in the below fashion, how do I arrive at the number of paths that exist between given points, and path details?
1,2 //node 1 and 2 are connected
2,3
2,5
4,2
5,11
11,12
6,7
...
7
votes
2answers
419 views
How to get the cut-set using the Edmonds–Karp algorithm?
I implemented the Edmonds–Karp algorithm using the Pseudocode that I found in the Edmonds–Karp algorithm wiki page: http://en.wikipedia.org/wiki/Edmonds%E2%80%93Karp_algorithm
It works great, yet the ...
7
votes
3answers
703 views
Create a Hash Table with two arrays
Does anyone know how to do this and what the pseudo code would look like?
As we all know a hash table stores key,value pairs and when a key is a called, the function will return the value associated ...
7
votes
6answers
1k views
Checking to see if 3 points are on the same line
I want to know a piece of a code which can actually tell me if 3 points in a 2D space are on the same line or not. A pseudocode is also sufficient but Python is better.
Thanks
7
votes
10answers
261 views
Interleaving sparse sorted arrays
I've got a set of lists of events. The events always happen in a given order, but not every event always happens. Here's an example input:
[[ do, re, fa, ti ],
[ do, re, mi ],
[ do, la, ti, za ],
...
7
votes
7answers
366 views
An algorithm to solve a simple(?) array problem
For this problem speed is pretty crucial. I've drawn a nice image to explain the problem better. The algorithm needs to calculate if edges of a rectangle continue within the confines of the canvas, ...
6
votes
2answers
270 views
Maximum Likelihood Estimate pseudocode
I need to code a Maximum Likelihood Estimator to estimate the mean and variance of some toy data. I have a vector with 100 samples, created with numpy.random.randn(100). The data should have zero ...
6
votes
7answers
2k views
How to find the units digit of a certain power in a simplest way
How to find out the units digit of a certain number (e.g. 3 power 2011). What logic should I use to find the answer to this problem?
6
votes
3answers
232 views
Difference among approximatelyEqual and essentiallyEqual in The art of computer programming
I get this code snippet from some where else. According to the webmaster, the code is picked from The art of computer programming by Knuth
Since I do not have a copy of that book, may I know what is ...
6
votes
7answers
929 views
Pseudocode interpreter?
Like lots of you guys on SO, I often write in several languages. And when it comes to planning stuff, (or even answering some SO questions), I actually think and write in some unspecified hybrid ...
6
votes
3answers
421 views
I'm trying to find if a rectangle intersects a concave polygon. Does this algorithm accomplish that?
I'm trying to find if a rectangle intersects a concave polygon. I found this algorithm:
double determinant(Vector2D vec1, Vector2D vec2){
return vec1.x*vec2.y-vec1.y*vec2.x;
}
//one edge is a-b, ...
6
votes
3answers
669 views
What does “!” mean in pseudo-code? I know “!” stands for factorial but I can't translate it
What does ! mean in pseudo-code? I know ! stands for factorial but I can't translate it .
ex:
get operation
if (operation!= ’B’ OR operation != ’D’ OR operation!= ’W’) then
print "Invalid ...
6
votes
15answers
1k 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 ...
5
votes
5answers
190 views
Interview puzzle: Jump Game
Jump Game:
Given an array, start from the first element and reach the last by jumping. The jump length can be at most the value at the current position in the array. The optimum result is when you ...
5
votes
2answers
72 views
Is there a better way to calculate the frequency of all symbols in a file?
Okay, so, say I have a text file (not necessarily containing every possible symbol) and I'd like to calculate the frequency of each symbol and, after calculating the frequency, I then need to access ...
5
votes
2answers
303 views
Hyperbolic tessellation Java library
I was wondering if anyone knows a good library for tessellating a hyperbolic plane with polygons (my main interest lies in {8,3} tessellation). I found some applets here and there but the separation ...
5
votes
7answers
1k views
Pseudocode: a clear definition?
The following code is an example of what I think would qualify as pseudocode, since it does not execute in any language but the logic is correct.
string checkRubric(gpa, major)
bool brake = false
...
5
votes
6answers
2k views
Standards for pseudo code?
I need to translate some python and java routines into pseudo code for my master thesis but have trouble coming up with a syntax/style that is:
consistent
easy to understand
not too verbose
not too ...
5
votes
13answers
913 views
What programming language best bridges the gap between pseudocode and code?
As I write code from now on, I plan to first lay out everything in beautiful, readable pseudocode and then implement the program around that structure.
If I rank the languages that I currently know ...
5
votes
16answers
2k 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
1answer
249 views
What is the meaning of “from distinct vertex chains” in this nearest neighbor algorithm?
The following pseudo-code is from the first chapter of an online preview version of The Algorithm Design Manual (page 7 from this PDF).
The example is of a flawed algorithm, but I still really want ...
4
votes
12answers
195 views
How can I find all possible binary representations given the number of 1s? [closed]
Given N as the number of bits and K as the Number of 1s, how can i generate all binary representations that contain K ones and N-k zeros?
in other words i have:
N=4 //number of bits
K=2 //number ...
4
votes
2answers
474 views
sorting int array with only 3 elements
I have this array:
int [] myarray = {17, 6, 8};
What is the optimal way to sort this array, in pseudocode?
Thanks!
4
votes
8answers
141 views
How to compute the “15% of the time” randomness?
I'm looking for a decent, elegant method of calculating this simple logic.
Right now I can't think of one, it's spinning my head.
I am required to do some action only 15% of the time.
I'm used ...
4
votes
2answers
550 views
Algorithm to solve the points of a evenly-distributed / even-gaps spiral?
First, just to give a visual idea of what I'm after, here's the closest result (yet not exactly what I'm after) image that I've found:
http://www.mathematische-basteleien.de/spiral17.gif
Entire ...
4
votes
4answers
165 views
Implementing a shake event?
I'm making a gui API for games and one requested feature was a shake event. Essentially an event very similar to Windows 7's Aero Shake. When the mouse is down, if it is rapidly moved back and forth ...
4
votes
1answer
457 views
How does one make a point to point “bolt” of lightning using perlin noise or other algorithm?
Every implementation I've come across of perlin noise generation has been for the generation of 2D terrain, etc. I cannot find a decent example of point to point lightning generation anywhere.
Are ...
4
votes
2answers
890 views
Algorithm to find which number in a list sum up to a certain number
I have a list of numbers. I also have a certain sum. The sum is made from a few numbers from my list (I may/may not know how many numbers it's made from). Is there a fast algorithm to get a list of ...
4
votes
6answers
387 views
Interview Question - Flipping Bits
I recently saw an interview question asking the following:
Given a 32 bit number, write pseudo
code to flip the second last bit
What is the best/easiest way to do this?
4
votes
1answer
828 views
help in the Donalds B. Johnson's algorithm, i cannot understand the pseudo code (PART II)
i cannot understand a certain part of the paper published by Donald Johnson about finding cycles (Circuits) in a graph.
More specific i cannot understand what is the matrix Ak which is mentioned in ...
4
votes
2answers
3k 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) ...
3
votes
3answers
155 views
Comparing boolean matrices
I have a little problem. I need to compare one two-dimensional array filled with ones and zeros (lets call it Matrix A - zeros actually represent blank spots and ones are positions of football players ...
3
votes
4answers
166 views
How can i get the next highest multiple of 5 or 10
From a given double I want to get the next highest number according to some rules which, since I have some difficulty describing them, I will illustrate by examples:
Input Desired output
------- ...
3
votes
1answer
66 views
What does := mean when used in pseudocode?
When looking at pseudocode (actually, on the Wikipedia article on A*), i came across the use of := to assign or initialize a variable. What does this mean? Is part of some kind of set notation? If ...
3
votes
1answer
151 views
Pathfinding (routing, trip planning, …) algorithms on graphs with time restrictions
I have a database of bus/train/... stops and the arrival/departure times on each date and so on. I'm looking for a way to do a search for the fastest(shortest/cheapest/least transitions) trip between ...