-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatrix.h
More file actions
executable file
·147 lines (134 loc) · 1.9 KB
/
Matrix.h
File metadata and controls
executable file
·147 lines (134 loc) · 1.9 KB
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
/*
* Matrix.h
*
* Created on: 4 Jun 2014
* Author: lester
*/
#ifndef MATRIX_H_
#define MATRIX_H_
#include <vector>
#include <stdint.h>
/*
* One dimension matrix
*/
template<typename T>
class Matrix1D
{
public:
Matrix1D()
{
}
~Matrix1D()
{
}
void setSize(uint16_t count)
{
data.setSize(count);
}
void Expand(uint8_t count)
{
data.SetSize(data.size);
}
private:
std::vector<T> data;
};
template<typename T>
class Matrix2D
{
};
/*
* 2 Dimensions matrix with bool is done using std::bitset<16>
*
* each row will return the first bitset
*
* Matrix ( rows , columns set), ::columnset_size
* [] -> column set
* [] -> bool ref value
*
* for each row
* while not last column
* get column set,
* jump to next
*
*/
template<>
class Matrix2D<bool>
{
public:
Matrix2D(uint16_t m) :
m(m), row_size((m + 7) / 8)
{
reserve = row_size * m * 2;
d = new uint8_t[reserve];
}
~Matrix2D()
{
delete d;
}
void add(uint16_t count = 1)
{
}
class value
{
friend Matrix2D<bool> ;
operator bool() const
{
return ((*d & mask) != 0);
}
bool operator =(bool b)
{
if (b)
*d |= mask;
else
*d &= ~mask;
return b;
}
bool operator *() const
{
return ((*d & mask) != 0);
}
private:
value(uint8_t *d, uint8_t mask) :
d(d), mask(mask)
{
}
uint8_t * const d;
uint8_t const mask;
};
class row
{
friend Matrix2D<bool> ;
public:
value operator [](uint16_t column)
{
if (column >= count)
return
{ 0,0 };
return
{ d + column / 8,uint8_t (column %8)};
}
private:
row(uint8_t * d, uint16_t count) :
d(d), count(count)
{
}
uint8_t * const d;
uint16_t const count;
};
row operator [](uint16_t row)
{
if (row >= m)
{
return
{ 0,0};
}
return
{ d + (row * row_size),m};
}
private:
uint16_t m; //matrix dimension
uint16_t reserve;
uint16_t row_size;
uint8_t *d;
};
#endif /* MATRIX_H_ */