Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Nucleo_Ex04_USBPAD by
USBHost/mymap.h
- Committer:
- jose_23991
- Date:
- 2016-04-28
- Revision:
- 2:7c1379b29ce6
- Parent:
- 0:b5f79b4f741d
File content as of revision 2:7c1379b29ce6:
#pragma once
template<class K,class T>
class mymap {
struct mypair {
K first;
T second;
};
public:
mymap() {
m_size = 0;
}
T& operator[](const K& key) {
int it;
if (count(key) == 0) {
it = insert(key, 0);
} else {
it = find(key);
}
return m_buf[it].second;
}
bool empty() { return m_size == 0 ? true : false; }
int size() { return m_size; }
void clear() { m_size = 0; }
int count(K key) {
for(int i = 0; i < m_size; i++) {
if (m_buf[i].first == key) {
return 1;
}
}
return 0;
}
private:
int find(K key) {
for(int i = 0; i < m_size; i++) {
if (m_buf[i].first == key) {
return i;
}
}
return -1;
}
int insert(K key, T value) {
int it = find(key);
if (it != -1) {
m_buf[it].second = value;
return it;
}
mypair* new_buf = new mypair[m_size+1];
if (m_size > 0) {
for(int i = 0; i < m_size; i++) {
new_buf[i] = m_buf[i];
}
delete[] m_buf;
}
m_buf = new_buf;
it = m_size++;
m_buf[it].first = key;
m_buf[it].second = value;
return it;
}
int m_size;
mypair *m_buf;
};
