2006-06-06 20:28:42 +00:00
|
|
|
/* Do not edit this file. It was automatically generated. */
|
2006-05-30 13:45:40 +00:00
|
|
|
|
|
|
|
#ifndef HEADER_Vector
|
|
|
|
#define HEADER_Vector
|
|
|
|
/*
|
2011-12-26 21:35:57 +00:00
|
|
|
htop - Vector.h
|
2011-05-26 16:35:07 +00:00
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2006-05-30 13:45:40 +00:00
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Object.h"
|
|
|
|
|
2011-11-18 06:08:56 +00:00
|
|
|
#define swap(a_,x_,y_) do{ void* tmp_ = a_[x_]; a_[x_] = a_[y_]; a_[y_] = tmp_; }while(0)
|
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
#ifndef DEFAULT_SIZE
|
|
|
|
#define DEFAULT_SIZE -1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct Vector_ {
|
|
|
|
Object **array;
|
2012-12-05 15:12:20 +00:00
|
|
|
ObjectClass* type;
|
2006-05-30 13:45:40 +00:00
|
|
|
int arraySize;
|
|
|
|
int growthRate;
|
|
|
|
int items;
|
|
|
|
bool owner;
|
|
|
|
} Vector;
|
|
|
|
|
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern Vector* Vector_new(ObjectClass* type, bool owner, int size);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void Vector_delete(Vector* this);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern int Vector_count(Vector* this);
|
2006-11-12 21:52:14 +00:00
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
#endif
|
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void Vector_prune(Vector* this);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2011-11-18 06:08:56 +00:00
|
|
|
// If I were to use only one sorting algorithm for both cases, it would probably be this one:
|
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void Vector_quickSort(Vector* this);
|
2011-11-18 06:08:56 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void Vector_insertionSort(Vector* this);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void Vector_insert(Vector* this, int idx, void* data_);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern Object* Vector_take(Vector* this, int idx);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern Object* Vector_remove(Vector* this, int idx);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void Vector_moveUp(Vector* this, int idx);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void Vector_moveDown(Vector* this, int idx);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void Vector_set(Vector* this, int idx, void* data_);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2011-11-18 06:08:56 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
|
2010-02-25 01:43:18 +00:00
|
|
|
extern Object* Vector_get(Vector* this, int idx);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2011-11-18 06:08:56 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define Vector_get(v_, idx_) ((v_)->array[idx_])
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2018-02-05 10:01:35 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
|
2007-08-10 05:59:36 +00:00
|
|
|
extern int Vector_size(Vector* this);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2018-02-05 10:01:35 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define Vector_size(v_) ((v_)->items)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void Vector_add(Vector* this, void* data_);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2007-08-10 05:59:36 +00:00
|
|
|
extern int Vector_indexOf(Vector* this, void* search_, Object_Compare compare);
|
2006-05-30 13:45:40 +00:00
|
|
|
|
2020-08-26 00:15:00 +00:00
|
|
|
void Vector_splice(Vector* this, Vector* from);
|
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
#endif
|