From 8e99b10dcf46442d096d8ec94fbab6aad1b4402d Mon Sep 17 00:00:00 2001 From: Giovanni La Mura <giovanni.lamura@inaf.it> Date: Thu, 12 Oct 2023 16:21:55 +0200 Subject: [PATCH] Optimize List to array conversion --- src/include/List.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/include/List.h b/src/include/List.h index cb291134..5ef25a79 100644 --- a/src/include/List.h +++ b/src/include/List.h @@ -1,6 +1,9 @@ /*! \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; -- GitLab