add count sort

This commit is contained in:
2018-11-13 09:15:33 -03:00
parent e3f5691462
commit 601b3c95ca
6 changed files with 100 additions and 7 deletions

View File

@@ -2,7 +2,7 @@ CC=gcc
CFLAGS=-Wall -I../src/include -DDEBUG -g
SRC=test.c
OBJ=$(SRC:.c=.o)
OBJ+=../src/random.o ../src/bubble_sort.o ../src/timer.o
OBJ+=../src/random.o ../src/bubble_sort.o ../src/timer.o ../src/count_sort.o
all: test