rename to counting sort
This commit is contained in:
parent
1094451880
commit
02ea6050e9
2
Makefile
2
Makefile
@ -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/count_sort.c src/quick_sort.c src/merge_sort.c src/bitonic_sort.c src/selection_sort.c
|
||||
SRC=src/sort.c src/random.c src/bubble_sort.c src/timer.c src/counting_sort.c src/quick_sort.c src/merge_sort.c src/bitonic_sort.c src/selection_sort.c
|
||||
OBJ=$(SRC:.c=.o)
|
||||
|
||||
all: sort informe
|
||||
|
@ -22,7 +22,7 @@
|
||||
* @param array El array a ordenar
|
||||
* @param n El tamaño del array
|
||||
*/
|
||||
void count_sort(int *array, int n) {
|
||||
void counting_sort(int *array, int n) {
|
||||
int i;
|
||||
int j;
|
||||
int *temp = malloc(sizeof(int) * n);
|
@ -13,7 +13,7 @@
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef _SORT_COUNT
|
||||
#define _SORT_COUNT
|
||||
void count_sort(int *array, int n);
|
||||
#ifndef _SORT_COUNTING
|
||||
#define _SORT_COUNTING
|
||||
void counting_sort(int *array, int n);
|
||||
#endif
|
18
src/sort.c
18
src/sort.c
@ -22,7 +22,7 @@
|
||||
#include "random.h"
|
||||
#include "timer.h"
|
||||
#include "bubble_sort.h"
|
||||
#include "count_sort.h"
|
||||
#include "counting_sort.h"
|
||||
#include "quick_sort.h"
|
||||
#include "bitonic_sort.h"
|
||||
#include "selection_sort.h"
|
||||
@ -49,7 +49,7 @@ void print_usage() {
|
||||
fprintf(stdout, " -q, --quick usar quick sort\n");
|
||||
fprintf(stdout, " -b, --bubble usar bubble sort\n");
|
||||
fprintf(stdout, " -B, --bitonic usar bitonic sort\n");
|
||||
fprintf(stdout, " -c, --count usar ordenamiento por conteo\n");
|
||||
fprintf(stdout, " -c, --counting usar ordenamiento por conteo\n");
|
||||
fprintf(stdout, " -s, --selection usar ordenamiento por selección\n");
|
||||
fprintf(stdout, " -n, --n=N la cantidad de elementos a ordenar, la\n");
|
||||
fprintf(stdout, " cantidad predeterminado es 10\n");
|
||||
@ -183,7 +183,7 @@ int main (int argc, char **argv) {
|
||||
int quick = 0;
|
||||
int bubble = 0;
|
||||
int bitonic = 0;
|
||||
int count = 0;
|
||||
int counting = 0;
|
||||
int selection = 0;
|
||||
int opt;
|
||||
int long_index = 0;
|
||||
@ -193,7 +193,7 @@ int main (int argc, char **argv) {
|
||||
{"quick", no_argument, 0, 'q'},
|
||||
{"bubble", no_argument, 0, 'b'},
|
||||
{"bitonic", no_argument, 0, 'B'},
|
||||
{"count", no_argument, 0, 'c'},
|
||||
{"counting", no_argument, 0, 'c'},
|
||||
{"selection", no_argument, 0, 's'},
|
||||
{"n", required_argument, 0, 'n'},
|
||||
{"elegir", no_argument, 0, 'e'},
|
||||
@ -215,7 +215,7 @@ int main (int argc, char **argv) {
|
||||
quick = 1;
|
||||
bubble = 1;
|
||||
bitonic = 1;
|
||||
count = 1;
|
||||
counting = 1;
|
||||
selection = 1;
|
||||
break;
|
||||
case 'm':
|
||||
@ -231,7 +231,7 @@ int main (int argc, char **argv) {
|
||||
bitonic = 1;
|
||||
break;
|
||||
case 'c':
|
||||
count = 1;
|
||||
counting = 1;
|
||||
break;
|
||||
case 's':
|
||||
selection = 1;
|
||||
@ -296,7 +296,7 @@ int main (int argc, char **argv) {
|
||||
}
|
||||
}
|
||||
|
||||
if (!merge && !quick && !bubble && !bitonic && !count && !selection) {
|
||||
if (!merge && !quick && !bubble && !bitonic && !counting && !selection) {
|
||||
fprintf(stderr, "Error: No se seleccionó un algoritmo valido!\n");
|
||||
print_usage();
|
||||
return 4;
|
||||
@ -351,8 +351,8 @@ int main (int argc, char **argv) {
|
||||
end_sort();
|
||||
}
|
||||
|
||||
// O(n^2)
|
||||
if (count) {
|
||||
// O((1/2) * n^2 - (1/2) * n)
|
||||
if (counting) {
|
||||
start_sort("Count sort corriendo... ", n);
|
||||
count_sort(work_array, n);
|
||||
end_sort();
|
||||
|
@ -3,7 +3,7 @@ CFLAGS=-Wall -I../src/include -DDEBUG -g
|
||||
SRC=test.c
|
||||
OBJ=$(SRC:.c=.o)
|
||||
|
||||
OBJ+=../src/random.o ../src/bubble_sort.o ../src/count_sort.o ../src/quick_sort.o ../src/merge_sort.o ../src/bitonic_sort.o ../src/selection_sort.o
|
||||
OBJ+=../src/random.o ../src/bubble_sort.o ../src/counting_sort.o ../src/quick_sort.o ../src/merge_sort.o ../src/bitonic_sort.o ../src/selection_sort.o
|
||||
|
||||
all: test
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include <unistd.h>
|
||||
#include "random.h"
|
||||
#include "bubble_sort.h"
|
||||
#include "count_sort.h"
|
||||
#include "counting_sort.h"
|
||||
#include "selection_sort.h"
|
||||
#include "bitonic_sort.h"
|
||||
#include "merge_sort.h"
|
||||
@ -124,10 +124,10 @@ int main(int argc, char **argv) {
|
||||
passed++;
|
||||
}
|
||||
|
||||
// Test count sort
|
||||
// Test counting sort
|
||||
pass = 1;
|
||||
memcpy(test_array, test_case, sizeof(int) * n);
|
||||
fprintf(stdout, "\tcount sort: ");
|
||||
fprintf(stdout, "\tcounting sort: ");
|
||||
fflush(stdout);
|
||||
count_sort(test_array, n);
|
||||
for (i = 0; i < n; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user