Main Page   Packages   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Search  

C:/temp/src/j2k/Deprecated/RefList/LADTIEX.C File Reference

Go to the source code of this file.

Compounds

class  List

Typedefs

typedef int Elem

Functions

void print (List)
 main ()

Variables

const int LIST_SIZE = 10


Typedef Documentation

typedef int Elem
 

Definition at line 2 of file LADTIEX.C.


Function Documentation

main void   
 

Definition at line 26 of file LADTIEX.C.

00027 {
00028   List L1;
00029   List L2(15);
00030   List L3;
00031 
00032   L2.append(12);  // L2 now ( 12 )
00033   print(L2);
00034   L2.append(20);  // L2 now ( 12, 20 )
00035   L2.append(15);  // L2 now ( 12, 20, 15 )
00036   print(L2);
00037   L1.setFirst();
00038   L1.insert(39);  // L1 now ( 39 )
00039   L1.next();      // L1 now ( 39, 12 )
00040   L1.insert(12);
00041   return(0);
00042 }

void print List   
 


Variable Documentation

const int LIST_SIZE = 10
 

Definition at line 1 of file LADTIEX.C.


Generated on Sun Oct 14 18:47:27 2001 for Standard J2K Library by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001