/*-------------------------------------------------------------------------- Copyright (c) 2010-2011, 2013, The Linux Foundation. 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 Linux Foundation nor the names of its 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, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 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. --------------------------------------------------------------------------*/ #ifndef _MAP_H_ #define _MAP_H_ #include template class Map { struct node { T data; T2 data2; node* prev; node* next; node(T t, T2 t2,node* p, node* n) : data(t), data2(t2), prev(p), next(n) {} }; node* head; node* tail; node* tmp; unsigned size_of_list; static Map *m_self; public: Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {} bool empty() const { return ( !head || !tail ); } operator bool() const { return !empty(); } void insert(T,T2); void show(); int size(); T2 find(T); // Return VALUE T find_ele(T);// Check if the KEY is present or not T2 begin(); //give the first ele bool erase(T); bool eraseall(); bool isempty(); ~Map() { while (head) { node* temp(head); head=head->next; size_of_list--; delete temp; } } }; template T2 Map::find(T d1) { tmp = head; while (tmp) { if (tmp->data == d1) { return tmp->data2; } tmp = tmp->next; } return 0; } template T Map::find_ele(T d1) { tmp = head; while (tmp) { if (tmp->data == d1) { return tmp->data; } tmp = tmp->next; } return 0; } template T2 Map::begin() { tmp = head; if (tmp) { return (tmp->data2); } return 0; } template void Map::show() { tmp = head; while (tmp) { printf("%d-->%d\n",tmp->data,tmp->data2); tmp = tmp->next; } } template int Map::size() { int count =0; tmp = head; while (tmp) { tmp = tmp->next; count++; } return count; } template void Map::insert(T data, T2 data2) { tail = new node(data, data2,tail, NULL); if ( tail->prev ) tail->prev->next = tail; if ( empty() ) { head = tail; tmp=head; } tmp = head; size_of_list++; } template bool Map::erase(T d) { bool found = false; tmp = head; node* prevnode = tmp; node *tempnode; while (tmp) { if ((head == tail) && (head->data == d)) { found = true; tempnode = head; head = tail = NULL; delete tempnode; break; } if ((tmp ==head) && (tmp->data ==d)) { found = true; tempnode = tmp; tmp = tmp->next; tmp->prev = NULL; head = tmp; tempnode->next = NULL; delete tempnode; break; } if ((tmp == tail) && (tmp->data ==d)) { found = true; tempnode = tmp; prevnode->next = NULL; tmp->prev = NULL; tail = prevnode; delete tempnode; break; } if (tmp->data == d) { found = true; prevnode->next = tmp->next; tmp->next->prev = prevnode->next; tempnode = tmp; //tmp = tmp->next; delete tempnode; break; } prevnode = tmp; tmp = tmp->next; } if (found)size_of_list--; return found; } template bool Map::eraseall() { node *tempnode; tmp = head; while (head) { tempnode = head; tempnode->next = NULL; head = head->next; delete tempnode; } tail = head = NULL; return true; } template bool Map::isempty() { if (!size_of_list) return true; else return false; } #endif // _MAP_H_