Skip to content

Commit

Permalink
modified: 6-lista-lig-din-cir-cab.c
Browse files Browse the repository at this point in the history
  • Loading branch information
anabeatrizchagas committed Jan 10, 2023
1 parent 2f52f55 commit 917ddc6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions 6-lista-lig-din-cir-cab.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ typedef struct

// declarando funcoes

void inicializarLista(LISTA_CIRC_COM_CABECA *l); // ok
void exibirLista(LISTA_CIRC_COM_CABECA *l); // ok
void inicializarLista(LISTA_CIRC_COM_CABECA *l);
void exibirLista(LISTA_CIRC_COM_CABECA *l);

int tam(LISTA_CIRC_COM_CABECA *l);

NO* retornaPrimeiroElem(LISTA_CIRC_COM_CABECA *l); // ok
NO* retornaEnesimoElem(LISTA_CIRC_COM_CABECA *l, int n); // ok
NO* retornaUltimoElem(LISTA_CIRC_COM_CABECA *l); // ok
NO* buscaSeqOrd(LISTA_CIRC_COM_CABECA *l, int ch, NO** ant); // ok
NO* retornaPrimeiroElem(LISTA_CIRC_COM_CABECA *l);
NO* retornaEnesimoElem(LISTA_CIRC_COM_CABECA *l, int n);
NO* retornaUltimoElem(LISTA_CIRC_COM_CABECA *l);
NO* buscaSeqOrd(LISTA_CIRC_COM_CABECA *l, int ch, NO** ant);

bool insercaoOrdSemRep(LISTA_CIRC_COM_CABECA *l, int ch); // ok
bool exclusaoDeCh(LISTA_CIRC_COM_CABECA *l, int ch); // ok
bool insercaoOrdSemRep(LISTA_CIRC_COM_CABECA *l, int ch);
bool exclusaoDeCh(LISTA_CIRC_COM_CABECA *l, int ch);
bool destruirLista(LISTA_CIRC_COM_CABECA *l);

// implementando funcoes
Expand Down

0 comments on commit 917ddc6

Please sign in to comment.