Search Results

2
votes

What have you used Regular Expressions for?

I use them quite frequently, probably because I'm mostly in a linux environment and have easy access to them. Searching for things in an editor, especially when I know two parts on a …
6
votes

C Program to search n-th smallest element in array without sorting?

What you are referring to is the Selection Algorithm, as previously noted. Specifically, your reference to quicksort suggests you are thinking of the …