2
votes
What is a good algorithm for compacting records in a blocked file?
This sounds like a variation of the bin packing problem, but where you already have an inferior allocation that you wan …
1
vote
efficiency /algorithms vs system specifications
Yes, it does depend on system specification. One system might be 10 times faster than another, so it will run bubblesort and quicksort on a set of data 10 times faster than the other.
But …
1
vote
Which sort algorithm works best on mostly sorted data?
Splaysort is an obscure sorting method based on splay tree …
0
votes
What should students be taught first when first learning sorting algorithms?
If you want to teach the concept of sorting, then I believe you must teach at least two different ways of sorting -- otherwise the students will think that sorting is just about the one way you tau …
2
votes
Knowing the plaintext, how to discover the encryption scheme used?
Depending on how much effort you want to put into it, you should be able to get somewhere. Start by reading up on cryptanalysis …
