28 #define EMPTY_LIST (List*) 0 List * list_insert_ord(List *l, int data)
Ordered insert of a new element in the list.
void list_println_reverse(List *l)
Print the list reversed with a new line.
int list_last(List *l)
Get the data from last element.
List * list_init(int size_list,...)
Create a list based on its variadic arguments.
int list_sum(List *l)
Return the sum of numbers on the list.
List * list_concat(List *l_x, List *l_y)
Return a concatenation of the two lists as a new list.
List * list_insert(List *l, int data)
Insert a new element on the beginning of the list.
List * list_tail(List *l)
Get the tail of the list.
List * list_append(List *l, int data)
Insert a new element on the end of the list.
List * list_create(void)
create a new list instance
void list_println(List *l)
Print the list with a new line.
int list_head(List *l)
Get the data from the first element.
void list_print(List *l)
Print the list without a new line.
int data
Definition: list.h:21
List * list_remove(List *l, int data)
Remove specific element from List.
List * list_copy(List *l)
Create a copy of the list l.
int list_less_than(List *l, int n)
Return the number of numbers less n.
int list_length(List *l)
Return the length of the list.
void list_print_reverse(List *l)
Print the list reversed without a new line.
List * list_search(List *l, int data)
Search on the list by data and return the node which contains it.
void list_reverse(List **l)
Reverse a list (no creating a new) WARNING: side-effects.
int list_empty(List *l)
Verify if the list is empty.
struct ListNode * next
Definition: list.h:22
int list_perfect(List *l)
Return the count of perfect numbers on list.
int list_pop_head(List **l)
Get and pop the head of the list.
int list__is_perfect_number(int n)
Check if a given number is perfect.
void list_free(List *l)
Free memory of List and its nodes.
int list_equal(List *l_x, List *l_y)
Check if two lists are equal.
List * list__new_node(int data)
Create a new node for the list.
int list_pop_last(List **l)
Get and pop the last element of the list.