Skip to content
Snippets Groups Projects
Commit 8e99b10d authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Optimize List to array conversion

parent 9f251cf0
No related branches found
No related tags found
No related merge requests found
/*! \file List.h
*/
#ifndef NULL
#define NULL 0
#endif
#ifndef LIST_OUT_OF_BOUNDS_EXCEPTION
#define LIST_OUT_OF_BOUNDS_EXCEPTION 1
#endif
......@@ -154,8 +157,8 @@ template<class T> class List {
T* to_array() {
T *array = new T[size];
current = last;
for (int i = size; i > 0; i--) {
array[i - 1] = current->value;
for (int i = size - 1; i > -1; i--) {
array[i] = current->value;
current = current->p_prev;
}
return array;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment