New Sorting technique

I developed a new sorting technique which is 2nd fastest technique to sort any array.But now i dont know where to go to register or patent my work.Please help me.

Okay,so you are asking how to find complexity of a code in your other post and here you are claiming you have developed a new sorting technique which is 2nd fastest to sort array.

I suggest you to go to your teacher first to actually determine the complexity of your code. (And NO, i am not mocking you )

5 Likes

I think you are quite funny.

2 Likes

@gkcs I really wanted to say that .

Note: Currently best time complexity is already nlogn. I hope your “second-best” is not O(n*(n-1))

1 Like

I think for integers the current best is O(n) of Radix sort.

2 Likes

any link to learn that?