You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _LIST_H
|
|
#define _LIST_H
|
|
|
|
struct AuxList;
|
|
|
|
typedef AuxList* List;
|
|
|
|
List createList();
|
|
void insertFront(List &l, int i, int j);
|
|
int getLength(List &l);
|
|
int* returnRandom(List &l);
|
|
void destroyList(List &l);
|
|
|
|
|
|
#endif /* _LIST_H */
|