CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of linked-list
C++
/********************/
/* ListaCirculara.h */
/********************/
 
#ifndef LISTA_CIRCULARA
#define LISTA_CIRCULARA
 
struct nod
{
    nod *next;
by Parvulescu Cosmin   January 22, 2010 @ 7:46am
163 Views
no comments
 
C++
/**************************/
/* ListaDubluInlantuita.h */
/**************************/
 
#ifndef LISTA_DUBLA
#define LISTA_DUBLA
 
struct nod
{
    nod *llink;
by Parvulescu Cosmin   January 22, 2010 @ 7:44am
154 Views
no comments
 
C++
/***************************/
/* ListaSimpluInlantuita.h */
/***************************/
 
#ifndef LISTA_SIMPLA
#define LISTA_SIMPLA
 
struct nod
{
    int val;
by Parvulescu Cosmin   January 22, 2010 @ 5:28am
163 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate