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

@@ -1,7 +1,7 @@
CC=gcc
CFLAGS=-Wall -Isrc/include -DDEBUG -g
#LDFLAGS=-lm
SRC=src/sort.c src/random.c src/bubble_sort.c src/timer.c
SRC=src/sort.c src/random.c src/bubble_sort.c src/timer.c src/count_sort.c
OBJ=$(SRC:.c=.o)
all: sort informe