This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> | |
| #define QTD_INDIVIDUOS 10 | |
| #define GERACOES 10 | |
| void imprimir_elementos(int* vetor_valor_itens, int* vetor_peso_itens, int qtd_itens); | |
| void primeira_geracao(int* vetor_valor_itens, int* vetor_peso_itens, int** matriz_geracao, int qtd_itens, int capacidade_maxima_mochila); | |
| int* gera_vetor(int qtd_itens); | |
| int** gera_matriz(int qtd_itens); |