Sort and Search Methods

  • Thread starter Thread starter GUSTAVO V.P.
  • Start date Start date
G

GUSTAVO V.P.

Hello Friends. Somebody knows where I can find the different sort
methods and search like quicksort, shell, binary search, etc in VB NET.
Thank you.
Gracias.
 
Hi Gustavo,

You will not find it, because there are a lot of things that can be sorted,
has each of those his own sort methods, so when you are searching for a
special sort tell us what you are searching for.

However something as a Sort what was in Dos is not anymore in dotNet.

Cor
 
* "Cor Ligthert said:
You will not find it, because there are a lot of things that can be sorted,
has each of those his own sort methods, so when you are searching for a
special sort tell us what you are searching for.

It's all about the comparer. By providing a custom comparing mechanism
for the type of elements to be compared implementing the different
sorting algorithms is not a big problem. I am currently working on a
generic, extensible sorting library that implements many different
sorting algorithms that can be used for different datatypes (by using
generics).
 
Herfried,
It's all about the comparer. By providing a custom comparing mechanism
for the type of elements to be compared implementing the different
sorting algorithms is not a big problem. I am currently working on a
generic, extensible sorting library that implements many different
sorting algorithms that can be used for different datatypes (by using
generics).

I thought of given that answer because you can sort everything with that,
however what is that when in the message from the OP is stated Shell?

Is that an Anglo/Dutch oil company?

Cor
 
* "Cor Ligthert said:
I thought of given that answer because you can sort everything with that,
however what is that when in the message from the OP is stated Shell?

I assume the OP is referring to the Shellsort algorithm:

Is that an Anglo/Dutch oil company?

:-)
 
Herfried,

I did not know that, I was thinking about a sort in the Dos command using
the pipe

Thanks,

Cor
 
Back
Top