Tagged Questions
0
votes
2answers
82 views
What is the difference between tree depth and diameter?
Hi Im little confused with the difference between the depth and the diameter of a tree.Sorry if Its already asked but I couldn't find it.
2
votes
1answer
124 views
Any difference between Lazy evaluation and Short-circuit evaluation?
From Wikipedia:
Lazy evaluation is:
In programming language theory, lazy evaluation or call-by-need is
an evaluation strategy which delays the evaluation of an expression
until its value is ...
2
votes
2answers
105 views
What term describes procedural/fractal generation where coordinates are generated without knowledge of other coordinates?
Both Cellular Automata and Midpoint Displacement rely on information about the grid itself as it's being generated to be able to finish the generation process. Perlin/Simplex Noise are the only ...
1
vote
1answer
376 views
What does lowlink mean in Tarjan's SCC algorithm?
I was reading the code in the following link http://www.cosc.canterbury.ac.nz/tad.takaoka/alg/graphalg/sc.txt
I kept bumping into the word "low-link", and I have no idea what it means.
I know this is ...
10
votes
2answers
301 views
Is imperative Quicksort in situ or not?
Quicksort is often described as an in situ algorithm, despite the fact that it requires O(log n) stack space. So does in situ mean "requires less than O(n) additional space", or does stack space ...
0
votes
1answer
776 views
Meaning of “Primitive” in Operating System/Algorithm context
I am used to the word primitive being used for basic data types: boolean, integer, float, etc. However, in William Stallings' Operating Systems: Internals and Design Principles, he uses it in the ...
1
vote
1answer
990 views
Straight selection sort vs. exchange selection sort
What is the difference between straight selection sort vs. exchange selection sort? I got into a little debate today - my professor uses these two terminologies in his lecture notes. The selection ...
0
votes
3answers
1k views
High-level vs. low-level algorithm implementation
What is exactly meant by high-level and low-level implementation of an algorithm?
7
votes
8answers
2k views
5
votes
5answers
327 views
Linear Linked List - valid/common terminology?
Is speaking of a linear linked linked in contrast to a circular linked list a valid / common term? For some examples I'm posting to my students I need to distinguish between both and don't want to use ...
14
votes
1answer
549 views
What algorithms did Dijkstra develop?
I recently asked a question about one of the Dijkstra’s algorithms (shunting-yard). But almost everyone thought "Dijkstra's algorithm" meant his shortest path algorithm.
What other algorithms has ...
14
votes
3answers
10k views
What is the difference between tree depth and height?
This is a simple question from algorithms theory. The difference between them is that in one case you count number of nodes and in other number of edges on the shortest path between root and concrete ...
1
vote
10answers
2k views
What are algorithms and data structures in layman’s terms?
I currently work with PHP and Ruby on Rails as a web developer. My question is why would I need to know algorithms and data structures? Do I need to learn C, C++ or Java first? What are the practical ...
2
votes
3answers
246 views
Boxes linked by 'smart lines' - what's this called ? How's it done?
Terminology question !
In many graphics packages the user can draw a line between two objects (two boxes say) and then when the user moves one of the one boxes subseqently the line moves to keep the ...
