Tagged Questions
2
votes
6answers
1k views
How to best sort a portion of a circular buffer?
I have a circular, statically allocated buffer in C, which I'm using as a queue for a depth breadth first search. I'd like have the top N elements in the queue sorted. It would be easy to just use a ...