Manish Dhakal

Results 2 comments of Manish Dhakal

Hi! I’m new here and looking to start contributing to open source. If I understand this issue correctly, there are several sorting algorithms mentioned, but the goal is to implement...

I wrote this but don't know how to test it, though. ```c static void shellSort(Object** array, int left, int right, Object_Compare compare){ for(int gap = (right + 1) / 2;...