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
FOR %i IN (*.*) DO 7z.exe a -m0=LZMA2 -mmt=x "%~ni.7z" "%i" | |
where x = number of cores |
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
10 | |
6 1 3 4 5 0 7 3 1 9 | |
8 1 3 4 5 9 7 2 9 2 | |
3 2 8 4 5 1 7 1 6 3 | |
1 9 3 4 5 6 7 9 5 3 | |
2 7 4 4 5 2 7 0 2 1 | |
6 2 9 4 5 7 7 7 3 2 | |
9 5 1 4 5 3 7 0 0 0 | |
6 2 3 4 5 5 7 0 0 0 | |
1 2 2 4 5 7 7 0 0 0 |
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
no_musica *cria_musica(){ | |
s_musica nova_musica; | |
printf("Digite o nome do artista: "); | |
__fpurge(stdin); fgets(nova_musica.artista, 32, stdin); | |
printf("Digite o titulo da faixa: "); | |
__fpurge(stdin); fgets(nova_musica.titulo, 32, stdin); | |
printf("Digite o genero da faixa: "); | |
__fpurge(stdin); fgets(nova_musica.genero, 32, stdin); | |
printf("Digite o ano da faixa: "); |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
struct s_aluno{ | |
int ra; | |
char nome[52]; | |
float nota; | |
struct s_aluno *prox; | |
}; |
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
/* | |
Algumas operações em listas ligadas podem variar para permitir a utilização de outros tipos de dados. | |
As prinicipais variações são nos algoritmos de Inserção e no de Remoção. | |
>As Inserções em Listas Ligadas podem ser, basicamente, das seguintes maneiras: | |
- Inserir um elemento no Final da Lista | |
- Inserir ume lemento no Início da Lista | |
- Inserir um elemento em uma Lista Ordenada | |
>Já a Remoção pode ser feita das formas: |
NewerOlder