add shellsort + insertion sort
This commit is contained in:
parent
3c135b2765
commit
ab2bfd5797
|
@ -5,6 +5,8 @@ add_executable(sortalgs
|
|||
"visualizers/histogram.c"
|
||||
"algorithms/bubblesort.c"
|
||||
"algorithms/mergesort.c"
|
||||
"algorithms/insertionsort.c"
|
||||
"algorithms/shellsort.c"
|
||||
)
|
||||
|
||||
target_include_directories(sortalgs PRIVATE
|
||||
|
|
|
@ -5,5 +5,7 @@ typedef struct Application Application;
|
|||
|
||||
void bubblesort(Application*);
|
||||
void mergesort(Application*);
|
||||
void insertionsort(Application*);
|
||||
void shellsort(Application*);
|
||||
|
||||
#endif
|
|
@ -1,4 +1,3 @@
|
|||
#include "algorithms.h"
|
||||
#include "application.h"
|
||||
|
||||
void bubblesort(Application* app)
|
||||
|
|
24
src/algorithms/insertionsort.c
Normal file
24
src/algorithms/insertionsort.c
Normal file
|
@ -0,0 +1,24 @@
|
|||
#include "application.h"
|
||||
|
||||
void insertionsort(Application* app)
|
||||
{
|
||||
for(int i = 1; i < visualizer_data.array_size; i++)
|
||||
{
|
||||
int new = visualizer_data.array[i];
|
||||
int k = i;
|
||||
|
||||
while(k > 1 && visualizer_data.array[k - 1] > new)
|
||||
{
|
||||
visualizer_data.array[k] = visualizer_data.array[k - 1];
|
||||
k--;
|
||||
|
||||
if(update_screen(app))
|
||||
return;
|
||||
}
|
||||
|
||||
visualizer_data.array[k] = new;
|
||||
|
||||
if(update_screen(app))
|
||||
return;
|
||||
}
|
||||
}
|
|
@ -1,4 +1,3 @@
|
|||
#include "algorithms.h"
|
||||
#include "application.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
|
34
src/algorithms/shellsort.c
Normal file
34
src/algorithms/shellsort.c
Normal file
|
@ -0,0 +1,34 @@
|
|||
#include "application.h"
|
||||
|
||||
void shellsort(Application* app)
|
||||
{
|
||||
int step_size = 1;
|
||||
while (3 * step_size + 1 < visualizer_data.array_size)
|
||||
{
|
||||
step_size = 3 * step_size + 1;
|
||||
while (step_size > 0)
|
||||
{
|
||||
for(int i = step_size; i < visualizer_data.array_size; i++)
|
||||
{
|
||||
int new = visualizer_data.array[i];
|
||||
int k = i;
|
||||
|
||||
while(k > step_size && visualizer_data.array[k - step_size] > new)
|
||||
{
|
||||
visualizer_data.array[k] = visualizer_data.array[k - step_size];
|
||||
k -= step_size;
|
||||
|
||||
if(update_screen(app))
|
||||
return;
|
||||
}
|
||||
|
||||
visualizer_data.array[k] = new;
|
||||
|
||||
if(update_screen(app))
|
||||
return;
|
||||
}
|
||||
|
||||
step_size /= 3;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -79,7 +79,9 @@ void run_application(Application* app)
|
|||
GLFWwindow* window = app->window;
|
||||
|
||||
// bubblesort(app);
|
||||
mergesort(app, 0, visualizer_data.array_size - 1);
|
||||
// mergesort(app);
|
||||
// insertionsort(app);
|
||||
shellsort(app);
|
||||
|
||||
while(!glfwWindowShouldClose(window))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue