/* This file is part of the KDE project Copyright (C) 2001 Werner Trobin This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include struct Node { Node( unsigned int key ) : m_key( key ), m_index( 0 ) {} unsigned int key() const { return m_key; } void setKey( unsigned int key ) { m_key = key; } int index() const { return m_index; } void setIndex( int i ) { m_index = i; } private: unsigned int m_key; int m_index; }; static const char* const keys[] = { "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "eleven", "twelve", 0 }; int main( int /*argc*/, char **/*argv*/ ) { TQPtrList list; list.setAutoDelete( true ); TQAsciiDict dict; KOffice::PriorityQueue queue; srand( time( 0 ) ); for ( int i = 0; i < 12; ++i ) { Node *n = new Node( rand() % 20 ); list.append( n ); queue.insert( n ); // Check whether the AsciiDict CTOR is okay Node *n2 = new Node( *n ); dict.insert( keys[ i ], n2 ); } kdDebug() << "##### Queue 1: " << endl; queue.dump(); kdDebug() << "##### Queue 2: " << endl; KOffice::PriorityQueue queue2( dict ); queue2.dump(); Node *n = list.at( 6 ); kdDebug() << "##### Decreasing node: " << n->key() << " at " << n->index() << endl; n->setKey( 2 ); queue.keyDecreased( n ); queue.dump(); n = list.at( 2 ); kdDebug() << "##### Decreasing node: " << n->key() << " at " << n->index() << endl; n->setKey( 0 ); queue.keyDecreased( n ); queue.dump(); n = queue.extractMinimum(); while ( n ) { queue.dump(); n = queue.extractMinimum(); } return 0; }