-
Notifications
You must be signed in to change notification settings - Fork 24
/
SparseArray2D.h
155 lines (132 loc) · 4.5 KB
/
SparseArray2D.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
Copyright (c) 2012-2017, Michael (Mikhail) Yudelson
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the Michael (Mikhail) Yudelson nor the
names of other contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// never finished this self-baked implementation of a sparse 2D array
#ifndef __HMM__SparseArray2D__
#define __HMM__SparseArray2D__
#include <stdlib.h>
#include "utils.h"
template <typename T>
class SparseArray2D {
public:
SparseArray2D();
~SparseArray2D();
static NDAT binsearch(const T *key, const void *base0, NDAT nmemb, NDAT *lim);
void set(NDAT r, NDAT c, T value);
private:
T *elements; // all elements
NDAT size; // all elements
NDAT n_rows;
NDAT *row_p; // pointer to rows in index terms
NDAT *row_ix; // row coordinate index
NDAT *col_ix; // colum coordinate indexes
NDAT row_size(NDAT r); // for row coordinate
NDAT row_size_ix(NDAT r_ix); // for row index
void add_row(NDAT r, NDAT c, T v); // add row and column and value in one pack
};
template <typename T>
SparseArray2D<T>::SparseArray2D() {
this->elements = NULL;
this->size = 0;
this->n_rows = 0;
this->row_p = NULL;
this->row_ix = NULL;
this->col_ix = NULL;
}
template <typename T>
SparseArray2D<T>::~SparseArray2D() {
free(this->elements);
free(this->row_p);
free(this->row_ix);
free(this->col_ix);
}
template<typename T>
NDAT SparseArray2D<T>::binsearch(
const T *key,
const void *base0,
NDAT nmemb, NDAT *lim) {
const char *base = (const char*)base0;
const char *base00 = base;
// NDAT lim;
NDAT size = sizeof(T);
int cmp;
const void *p;
for (*lim = nmemb; *lim != 0; *lim >>= 1) {
p = base + (*lim >> 1) * size;
cmp = *key -(*((T*)p));// (*compar)(key, p);
if (cmp == 0) {
return ((char*)p-base00)/size;
}
if (cmp > 0) { /* key > p: move right */
base = (char *)p + size;
(*lim)++;
}
/* else move left */
}
return -1;
}
template <typename T>
NDAT SparseArray2D<T>::row_size(NDAT r) {
NDAT lim;
NDAT ix = binsearch(&r, this->row_ix, this->n_row, sizeof(NDAT), &lim);
if( ((int)ix)==-1 )
return 0;
else {
if( this->nrows==1)
return this->size;
else if( ix==(this->n_rows-1) )
return this->size - this->row_ix[ix-1];
else
return this->row_ix[ix] - this->row_ix[ix-1];
}
}
template <typename T>
NDAT SparseArray2D<T>::row_size_ix(NDAT r_ix) {
if( ((int)r_ix)==-1 )
return 0;
else {
if( this->nrows==1)
return this->size;
else if( r_ix==(this->n_rows-1) )
return this->size - this->row_ix[r_ix-1];
else
return this->row_ix[r_ix] - this->row_ix[r_ix-1];
}
}
template <typename T>
void SparseArray2D<T>::set(NDAT r, NDAT c, T value) {
// row exist?
NDAT r_ix = binsearch(&r, this->row_ix, this->n_row, sizeof(NDAT));
// add row
if( (int)r_ix == -1) {
}
// column exist?
// add column
// set value
}
// add row and column and value in one pack
template <typename T>
void SparseArray2D<T>::add_row(NDAT r, NDAT c, T v) {
}
#endif /* defined(__HMM__SparseArray2D__) */