Hacker News new | ask | show | jobs
by orlp 932 days ago
> I was thinking of Quicksort, where j moves left until it meets i, and missed the fact that they both move in the same direction and i runs through the entire list.

You were thinking of Hoare partitioning. Quicksort can use either Hoare or Lomuto (or any other) partitioning algorithm.

1 comments

Yes, now that you mention it, that does make sense, thank you.