Top "Pseudocode" questions

Pseudocode is a compact and informal high-level description of a computer programming algorithm.

How to make a pipe in c++

I'm looking at the code for a c++ program which pipes the contents of a file to more. I don't …

c++ pipe pseudocode
<--- and <-> in pseudocode

I am not from cs background and I am trying to make sense of what is used for what. In …

pseudocode
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!

algorithm optimization sorting pseudocode
Pseudocode to compare two trees

This is a problem I've encountered a few times, and haven't been convinced that I've used the most efficient logic. …

algorithm tree pseudocode
Writing pseudocode - Best practices?

I don't want to invite an argument over whether Pseudocode is useful or not here,..there are plenty of questions …

pseudocode
Looking for Pseudo-code for Fortune's algorithm

I'd really appreciate if someone who ever dealt with Fortune's algorithm for generating Delaunay-triangulations presented me a rather low-level pseudo-code …

algorithm pseudocode
Pseudocode interpreter?

Like lots of you guys on SO, I often write in several languages. And when it comes to planning stuff, (…

algorithm language-agnostic artificial-intelligence interpreter pseudocode
Object.hashCode() algorithm

I'm looking for the algorithm of Object.hashCode(). This code is native in Object.java. Is this because (a) the …

java hashcode pseudocode
How to detect if a repeating pattern exists

My question isn't language specific... I would probably implement this in C# or Python unless there is a specific feature …

algorithm pattern-matching pseudocode
Interview puzzle: Jump Game

Jump Game: Given an array, start from the first element and reach the last by jumping. The jump length can …

algorithm pseudocode