Search Results

2
votes

Why is quicksort better than mergesort?

I'd like to add that of the three algoritms mentioned so far (mergesort, quicksort and heap sort) only mergesort is stable. That is, the order does not change for those values which have the same k …
5
votes

How do I compare phrases for similarity?

One approach is the so called bag-of-words model. As you guessed, first you count how many times words appear in the text (usually called document in the NLP-lingo). Then you throw out the …
10
votes

I need to join two lists, sort them and remove duplicates. Is there a better way to do this?

Our neighbourhood friendly Lisp guru pointed out the remove-duplicates function. He also prov …