2006-03-04 18:16:49 +00:00
|
|
|
/*
|
2011-12-26 21:35:57 +00:00
|
|
|
htop - Vector.c
|
2011-05-26 16:35:07 +00:00
|
|
|
(C) 2004-2011 Hisham H. Muhammad
|
2006-03-04 18:16:49 +00:00
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
#include "Vector.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#include <assert.h>
|
2011-12-26 21:35:57 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
/*{
|
2011-12-26 21:35:57 +00:00
|
|
|
#include "Object.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
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-03-04 18:16:49 +00:00
|
|
|
#ifndef DEFAULT_SIZE
|
|
|
|
#define DEFAULT_SIZE -1
|
|
|
|
#endif
|
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
typedef struct Vector_ {
|
2006-03-04 18:16:49 +00:00
|
|
|
Object **array;
|
2012-12-05 15:12:20 +00:00
|
|
|
ObjectClass* type;
|
2006-03-04 18:16:49 +00:00
|
|
|
int arraySize;
|
|
|
|
int growthRate;
|
|
|
|
int items;
|
|
|
|
bool owner;
|
2006-05-30 13:45:40 +00:00
|
|
|
} Vector;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
}*/
|
|
|
|
|
2012-12-05 15:12:20 +00:00
|
|
|
Vector* Vector_new(ObjectClass* type, bool owner, int size) {
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector* this;
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
if (size == DEFAULT_SIZE)
|
|
|
|
size = 10;
|
2006-05-30 13:45:40 +00:00
|
|
|
this = (Vector*) malloc(sizeof(Vector));
|
2006-03-04 18:16:49 +00:00
|
|
|
this->growthRate = size;
|
|
|
|
this->array = (Object**) calloc(size, sizeof(Object*));
|
|
|
|
this->arraySize = size;
|
|
|
|
this->items = 0;
|
2012-11-10 00:31:37 +00:00
|
|
|
this->type = type;
|
2006-03-04 18:16:49 +00:00
|
|
|
this->owner = owner;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
void Vector_delete(Vector* this) {
|
2006-03-04 18:16:49 +00:00
|
|
|
if (this->owner) {
|
|
|
|
for (int i = 0; i < this->items; i++)
|
|
|
|
if (this->array[i])
|
2012-12-05 15:12:20 +00:00
|
|
|
Object_delete(this->array[i]);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
free(this->array);
|
|
|
|
free(this);
|
|
|
|
}
|
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
|
2006-06-06 20:41:01 +00:00
|
|
|
static inline bool Vector_isConsistent(Vector* this) {
|
2006-11-08 21:47:11 +00:00
|
|
|
assert(this->items <= this->arraySize);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (this->owner) {
|
|
|
|
for (int i = 0; i < this->items; i++)
|
2012-12-05 15:12:20 +00:00
|
|
|
if (this->array[i] && !Object_isA(this->array[i], this->type))
|
2006-03-04 18:16:49 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-12 21:52:14 +00:00
|
|
|
int Vector_count(Vector* this) {
|
|
|
|
int items = 0;
|
|
|
|
for (int i = 0; i < this->items; i++) {
|
|
|
|
if (this->array[i])
|
|
|
|
items++;
|
|
|
|
}
|
|
|
|
assert(items == this->items);
|
|
|
|
return items;
|
|
|
|
}
|
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
#endif
|
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
void Vector_prune(Vector* this) {
|
|
|
|
assert(Vector_isConsistent(this));
|
2012-11-10 00:31:37 +00:00
|
|
|
if (this->owner) {
|
2014-04-21 22:01:15 +00:00
|
|
|
for (int i = 0; i < this->items; i++)
|
2012-11-10 00:31:37 +00:00
|
|
|
if (this->array[i]) {
|
2012-12-05 15:12:20 +00:00
|
|
|
Object_delete(this->array[i]);
|
2012-11-10 00:31:37 +00:00
|
|
|
//this->array[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
2006-03-04 18:16:49 +00:00
|
|
|
this->items = 0;
|
|
|
|
}
|
|
|
|
|
2011-11-18 06:08:56 +00:00
|
|
|
static int comparisons = 0;
|
|
|
|
|
|
|
|
static int partition(Object** array, int left, int right, int pivotIndex, Object_Compare compare) {
|
|
|
|
void* pivotValue = array[pivotIndex];
|
|
|
|
swap(array, pivotIndex, right);
|
|
|
|
int storeIndex = left;
|
|
|
|
for (int i = left; i < right; i++) {
|
|
|
|
comparisons++;
|
|
|
|
if (compare(array[i], pivotValue) <= 0) {
|
|
|
|
swap(array, i, storeIndex);
|
|
|
|
storeIndex++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
swap(array, storeIndex, right);
|
|
|
|
return storeIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void quickSort(Object** array, int left, int right, Object_Compare compare) {
|
|
|
|
if (left >= right)
|
|
|
|
return;
|
|
|
|
int pivotIndex = (left+right) / 2;
|
|
|
|
int pivotNewIndex = partition(array, left, right, pivotIndex, compare);
|
|
|
|
quickSort(array, left, pivotNewIndex - 1, compare);
|
|
|
|
quickSort(array, pivotNewIndex + 1, right, compare);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If I were to use only one sorting algorithm for both cases, it would probably be this one:
|
|
|
|
/*
|
|
|
|
|
|
|
|
static void combSort(Object** array, int left, int right, Object_Compare compare) {
|
|
|
|
int gap = right - left;
|
|
|
|
bool swapped = true;
|
|
|
|
while ((gap > 1) || swapped) {
|
|
|
|
if (gap > 1) {
|
|
|
|
gap = (int)((double)gap / 1.247330950103979);
|
|
|
|
}
|
|
|
|
swapped = false;
|
|
|
|
for (int i = left; gap + i <= right; i++) {
|
|
|
|
comparisons++;
|
|
|
|
if (compare(array[i], array[i+gap]) > 0) {
|
|
|
|
swap(array, i, i+gap);
|
|
|
|
swapped = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void insertionSort(Object** array, int left, int right, Object_Compare compare) {
|
|
|
|
for (int i = left+1; i <= right; i++) {
|
|
|
|
void* t = array[i];
|
|
|
|
int j = i - 1;
|
|
|
|
while (j >= left) {
|
|
|
|
comparisons++;
|
|
|
|
if (compare(array[j], t) <= 0)
|
|
|
|
break;
|
|
|
|
array[j+1] = array[j];
|
|
|
|
j--;
|
|
|
|
}
|
|
|
|
array[j+1] = t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Vector_quickSort(Vector* this) {
|
2012-12-05 15:12:20 +00:00
|
|
|
assert(this->type->compare);
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2012-12-05 15:12:20 +00:00
|
|
|
quickSort(this->array, 0, this->items - 1, this->type->compare);
|
2011-11-18 06:08:56 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Vector_insertionSort(Vector* this) {
|
2012-12-05 15:12:20 +00:00
|
|
|
assert(this->type->compare);
|
2011-11-18 06:08:56 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2012-12-05 15:12:20 +00:00
|
|
|
insertionSort(this->array, 0, this->items - 1, this->type->compare);
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2006-06-06 20:41:01 +00:00
|
|
|
static void Vector_checkArraySize(Vector* this) {
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2006-03-04 18:16:49 +00:00
|
|
|
if (this->items >= this->arraySize) {
|
2012-11-10 00:31:37 +00:00
|
|
|
//int i;
|
|
|
|
//i = this->arraySize;
|
2006-03-04 18:16:49 +00:00
|
|
|
this->arraySize = this->items + this->growthRate;
|
|
|
|
this->array = (Object**) realloc(this->array, sizeof(Object*) * this->arraySize);
|
2012-11-10 00:31:37 +00:00
|
|
|
//for (; i < this->arraySize; i++)
|
|
|
|
// this->array[i] = NULL;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2010-02-25 01:43:18 +00:00
|
|
|
void Vector_insert(Vector* this, int idx, void* data_) {
|
2006-03-04 18:16:49 +00:00
|
|
|
Object* data = data_;
|
2012-11-10 00:31:37 +00:00
|
|
|
assert(idx >= 0);
|
|
|
|
assert(idx <= this->items);
|
2012-12-05 15:12:20 +00:00
|
|
|
assert(Object_isA(data, this->type));
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_checkArraySize(this);
|
2012-11-10 00:31:37 +00:00
|
|
|
//assert(this->array[this->items] == NULL);
|
2010-11-22 12:38:53 +00:00
|
|
|
for (int i = this->items; i > idx; i--) {
|
|
|
|
this->array[i] = this->array[i-1];
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
2010-02-25 01:43:18 +00:00
|
|
|
this->array[idx] = data;
|
2006-03-04 18:16:49 +00:00
|
|
|
this->items++;
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2010-02-25 01:43:18 +00:00
|
|
|
Object* Vector_take(Vector* this, int idx) {
|
|
|
|
assert(idx >= 0 && idx < this->items);
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2010-02-25 01:43:18 +00:00
|
|
|
Object* removed = this->array[idx];
|
2012-11-10 00:31:37 +00:00
|
|
|
//assert (removed != NULL);
|
2006-03-04 18:16:49 +00:00
|
|
|
this->items--;
|
2010-02-25 01:43:18 +00:00
|
|
|
for (int i = idx; i < this->items; i++)
|
2006-03-04 18:16:49 +00:00
|
|
|
this->array[i] = this->array[i+1];
|
2012-11-10 00:31:37 +00:00
|
|
|
//this->array[this->items] = NULL;
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2006-03-04 18:16:49 +00:00
|
|
|
return removed;
|
|
|
|
}
|
|
|
|
|
2010-02-25 01:43:18 +00:00
|
|
|
Object* Vector_remove(Vector* this, int idx) {
|
|
|
|
Object* removed = Vector_take(this, idx);
|
2006-03-04 18:16:49 +00:00
|
|
|
if (this->owner) {
|
2012-12-05 15:12:20 +00:00
|
|
|
Object_delete(removed);
|
2006-03-04 18:16:49 +00:00
|
|
|
return NULL;
|
|
|
|
} else
|
|
|
|
return removed;
|
|
|
|
}
|
|
|
|
|
2010-02-25 01:43:18 +00:00
|
|
|
void Vector_moveUp(Vector* this, int idx) {
|
|
|
|
assert(idx >= 0 && idx < this->items);
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2010-02-25 01:43:18 +00:00
|
|
|
if (idx == 0)
|
2006-03-04 18:16:49 +00:00
|
|
|
return;
|
2010-02-25 01:43:18 +00:00
|
|
|
Object* temp = this->array[idx];
|
|
|
|
this->array[idx] = this->array[idx - 1];
|
|
|
|
this->array[idx - 1] = temp;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2010-02-25 01:43:18 +00:00
|
|
|
void Vector_moveDown(Vector* this, int idx) {
|
|
|
|
assert(idx >= 0 && idx < this->items);
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2010-02-25 01:43:18 +00:00
|
|
|
if (idx == this->items - 1)
|
2006-03-04 18:16:49 +00:00
|
|
|
return;
|
2010-02-25 01:43:18 +00:00
|
|
|
Object* temp = this->array[idx];
|
|
|
|
this->array[idx] = this->array[idx + 1];
|
|
|
|
this->array[idx + 1] = temp;
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2010-02-25 01:43:18 +00:00
|
|
|
void Vector_set(Vector* this, int idx, void* data_) {
|
2006-03-04 18:16:49 +00:00
|
|
|
Object* data = data_;
|
2012-12-05 15:12:20 +00:00
|
|
|
assert(idx >= 0);
|
|
|
|
assert(Object_isA((Object*)data, this->type));
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_checkArraySize(this);
|
2010-02-25 01:43:18 +00:00
|
|
|
if (idx >= this->items) {
|
|
|
|
this->items = idx+1;
|
2006-03-04 18:16:49 +00:00
|
|
|
} else {
|
|
|
|
if (this->owner) {
|
2010-02-25 01:43:18 +00:00
|
|
|
Object* removed = this->array[idx];
|
2006-03-04 18:16:49 +00:00
|
|
|
assert (removed != NULL);
|
|
|
|
if (this->owner) {
|
2012-12-05 15:12:20 +00:00
|
|
|
Object_delete(removed);
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-02-25 01:43:18 +00:00
|
|
|
this->array[idx] = data;
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2011-11-18 06:08:56 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
|
2010-02-25 01:43:18 +00:00
|
|
|
inline Object* Vector_get(Vector* this, int idx) {
|
|
|
|
assert(idx < this->items);
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2010-02-25 01:43:18 +00:00
|
|
|
return this->array[idx];
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2011-11-18 06:08:56 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define Vector_get(v_, idx_) ((v_)->array[idx_])
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
inline int Vector_size(Vector* this) {
|
|
|
|
assert(Vector_isConsistent(this));
|
2006-03-04 18:16:49 +00:00
|
|
|
return this->items;
|
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
static void Vector_merge(Vector* this, Vector* v2) {
|
2006-03-04 18:16:49 +00:00
|
|
|
int i;
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
for (i = 0; i < v2->items; i++)
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_add(this, v2->array[i]);
|
2006-03-04 18:16:49 +00:00
|
|
|
v2->items = 0;
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_delete(v2);
|
|
|
|
assert(Vector_isConsistent(this));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2008-03-09 08:58:38 +00:00
|
|
|
*/
|
|
|
|
|
2006-05-30 13:45:40 +00:00
|
|
|
void Vector_add(Vector* this, void* data_) {
|
2006-03-04 18:16:49 +00:00
|
|
|
Object* data = data_;
|
2012-12-05 15:12:20 +00:00
|
|
|
assert(Object_isA((Object*)data, this->type));
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2006-11-12 21:52:14 +00:00
|
|
|
int i = this->items;
|
2006-05-30 13:45:40 +00:00
|
|
|
Vector_set(this, this->items, data);
|
2006-11-12 21:52:14 +00:00
|
|
|
assert(this->items == i+1); (void)(i);
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2006-03-04 18:16:49 +00:00
|
|
|
}
|
|
|
|
|
2006-07-11 06:13:32 +00:00
|
|
|
inline int Vector_indexOf(Vector* this, void* search_, Object_Compare compare) {
|
2006-03-04 18:16:49 +00:00
|
|
|
Object* search = search_;
|
2012-12-05 15:12:20 +00:00
|
|
|
assert(Object_isA((Object*)search, this->type));
|
|
|
|
assert(compare);
|
2006-05-30 13:45:40 +00:00
|
|
|
assert(Vector_isConsistent(this));
|
2006-07-11 06:13:32 +00:00
|
|
|
for (int i = 0; i < this->items; i++) {
|
2006-03-04 18:16:49 +00:00
|
|
|
Object* o = (Object*)this->array[i];
|
2012-11-10 00:31:37 +00:00
|
|
|
assert(o);
|
|
|
|
if (compare(search, o) == 0)
|
2006-03-04 18:16:49 +00:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|