This file contains 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
// Criado por: profa. Divani Barbosa Gavinier | |
// Curriculo Lattes: http://lattes.cnpq.br/8503400830635447 | |
// [email protected] | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#define n 10000 | |
int v[n]; |
This file contains 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
// Criado por: profa. Divani Barbosa Gavinier | |
// Curriculo Lattes: http://lattes.cnpq.br/8503400830635447 | |
// [email protected] | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#define n 10000 | |
int v[n]; |
This file contains 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
// Criado por: profa. Divani Barbosa Gavinier | |
// Curriculo Lattes: http://lattes.cnpq.br/8503400830635447 | |
// [email protected] | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#define n 10000 | |
int v[n]; |
This file contains 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
// Criado por: profa. Divani Barbosa Gavinier | |
// Curriculo Lattes: http://lattes.cnpq.br/8503400830635447 | |
// [email protected] | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#define n 10000 | |
int v[n]; |
This file contains 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
// Criado por: profa. Divani Barbosa Gavinier | |
// Curriculo Lattes: http://lattes.cnpq.br/8503400830635447 | |
// [email protected] | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#define n 10000 | |
int v[n]; |
This file contains 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
// Criado por: profa. Divani Barbosa Gavinier | |
// Curriculo Lattes: http://lattes.cnpq.br/8503400830635447 | |
// [email protected] | |
#include <iostream> | |
using namespace std; | |
class FilaCircular { | |
private: double *itens; | |
int fim; |
This file contains 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
/* Desenvolva um programa que implemente uma Tabela Hash com tratamento de colisões do tipo lista. O elemento a ser armazenado será uma agenda telefônica com nome (item chave) e telefone. A agenda deve apresentar funções na forma de menu. O No deve ser implementado da seguinte forma: | |
struct NO { | |
char nome[1000]; | |
char tel[13]; | |
NO *prox; | |
}; | |
*/ | |
// Criado por: profa. Divani Barbosa Gavinier | |
// Curriculo Lattes: http://lattes.cnpq.br/8503400830635447 |
This file contains 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
// Criado por: profa. Divani Barbosa Gavinier | |
// Currículo Lattes: http://lattes.cnpq.br/8503400830635447 | |
// [email protected] | |
/* Uma empresa de informática comercializa um programa para gerenciar o cadastro de informações dos | |
funcionários de empresas em geral. Uma determinada empresa, com 8 departamentos, adquiriu o programa e, | |
ao executar o programa pela primeira vez, informou o número de funcionários e as informações de cada um | |
deles. As informações armazenadas são nome (vetor de caracteres), idade (inteiro), sexo (caractere), | |
tempo de casa em anos (inteiro) e salário (real). Escreva um programa em linguagem C++ que realize as | |
seguintes operações: |
This file contains 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
// Criado por: profa. Divani Barbosa Gavinier | |
// Currículo Lattes: http://lattes.cnpq.br/8503400830635447 | |
// [email protected] | |
#include <iostream> | |
#include <stdlib.h> | |
#include <time.h> | |
using namespace std; | |
int GeraNum(int); | |
int AdivinhaNum(); |
This file contains 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
// Criado por: profa. Divani Barbosa Gavinier | |
// Currículo Lattes: http://lattes.cnpq.br/8503400830635447 | |
// [email protected] | |
/* Crie um código em linguagem C++ que compare o tempo gasto pelo computador para ordenar um vetor de tamanho lido pelo usuário. | |
Use os métodos simples visto em aula e considere: | |
Atribuição de valores aleatórios entre zero e quinhentos ao vetor. | |
Crie um cópia do vetor gerado aleatoriamente e ordene a cópia. | |
Depois de ordenar a cópia, atribua os valores do vetor original a mesma, para que possa ordenar novamente através de outro método de ordenação e a comparação seja eficaz. | |
*/ |
NewerOlder