Skip to content

Instantly share code, notes, and snippets.

View lesimoes's full-sized avatar
😎
bugging && debugging

Leandro Simões lesimoes

😎
bugging && debugging
View GitHub Profile
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define TAM 100
void gerarVetor(int *vetor){
for(int i = 0; i < TAM ; i ++)
vetor[i] = i + 1;
};
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define TAM 10
struct arvore {
char info;
struct no *esq, *dir;
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define TAM 10
void aleatorio(int *vetor){
srand(time(NULL));
for(int i = 0 ; i < TAM ; i ++)
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define TAM 100000
void aleatorio(int *vetor){
srand(time(NULL));
for(int i = 0 ; i < TAM ; i ++)
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
struct No {
char info;
struct No *prox;
};
typedef struct No Registro;
#include <stdio.h>
#define TAM 10
struct fila {
int inicio, fim, tamanho;
char elemen[TAM];
}Fila;
void iniciar(struct fila *F){
F->inicio = 1;
#include <stdio.h>
#define TAM 10
struct pilha {
int topo;
char elemen[TAM];
}Pilha;
void inicia(struct pilha *P){
P->topo = -1;
#include <stdio.h>
#define TAM 10
struct lista {
int n;
char elemen[TAM];
}Lista;
void iniciaListaVazia(struct lista *L){ L->n = 0;}
import { Component, OnInit } from '@angular/core';
import { AngularFireDatabase, AngularFireList } from 'angularfire2/database';
import { Observable } from 'rxjs';
@Component({
selector: 'app-listagem',
templateUrl: './listagem.page.html',
styleUrls: ['./listagem.page.scss'],
})
@lesimoes
lesimoes / jobs.txt
Last active November 11, 2019 13:08
### Repositórios Github com vagas (Estão em Issues) ###
Backend Vagas
https://github.com/backend-br/vagas
https://github.com/backend-br/vagas/issues/1845
Fronted Vagas
https://github.com/frontendbr/vagas