Qt编程指南 ■ 顺序容器类 ■ QList ■ QVector ■ QLinkedList ■ QStack ■ QQueue ■ 关联容器类 ■ QSet ■ QMap ■ QMultiMap ■ QHash ■ QMultiHash
■ 顺序容器类
■ QList
QList 比较常用的容器类,以数组列表的形式实现,在前、后添加数据非常快。以下为常用方法。
QList< QString> list; 插入:insert ( )
删除:removeAt ( i)
删除第3 个 QString str = list. takeAt ( 2 ) ;
替换:replace ( )
交换: swap ( )
移动:move ( )
添加:append ( )
头部添加: prepend ( "mm" ) list. prepend ( "mm" ) ;
包含: list. contains ( "mm" ) ;
列表包含某值个数: list. count ( "mm" ) ; 包含“mm”的个数
查找 : list. indexOf ( "mm" ) ;
往前查找: list. indexOf ( "mm" , 2 ) ; QList< QString> list;
list << "A" << "B" << "C" << "B" << "A" ;
list. indexOf ( "B" ) ;
list. indexOf ( "B" , 1 ) ;
list. indexOf ( "B" , 2 ) ;
list. indexOf ( "X" ) ;
bool QList:: empty ( ) const 表为空,则返回true
list. begin ( ) , list. end ( )
for ( int i= 0 ; i< list. size ( ) ; ++ i)
{ qDebug ( ) << list. at ( i) ;
} QList< int > z;
z << 1 << 2 << 3 << 4 ; QList< int > z;
z << 1 << 2 << 3 << 4 ;
z. removeAt ( 1 ) ; # include <QCoreApplication>
# include <QList>
# include <QDebug> int main ( int argc, char * argv[ ] ) { QCoreApplication a ( argc, argv) ; QList< QString> list; list << "aa" << "bb" << "cc" ; if ( list[ 1 ] == "bb" ) list[ 1 ] = "ab" ; list. replace ( 2 , "bc" ) ; qDebug ( ) << "the list is: " ; for ( int i= 0 ; i< list. size ( ) ; ++ i) { qDebug ( ) << list. at ( i) ; } list. append ( "dd" ) ; list. prepend ( "mm" ) ; QString str = list. takeAt ( 2 ) ; qDebug ( ) << "at(2) item is: " << str; qDebug ( ) << "the list is: " ; for ( int i= 0 ; i< list. size ( ) ; ++ i) { qDebug ( ) << list. at ( i) ; } list. insert ( 2 , "mm" ) ; list. swap ( 1 , 3 ) ; qDebug ( ) << "the list is: " ; for ( int i= 0 ; i< list. size ( ) ; ++ i) { qDebug ( ) << list. at ( i) ; } qDebug ( ) << "contains 'mm' ?" << list. contains ( "mm" ) ; qDebug ( ) << "the 'mm' count: " << list. count ( "mm" ) ; qDebug ( ) << "the first 'mm' index: " << list. indexOf ( "mm" ) ; qDebug ( ) << "the second 'mm' index: " << list. indexOf ( "mm" , 1 ) ; return a. exec ( ) ;
}
■ QVector
append函数或者<< 操作符来在数组最后端添加元素而不用担心溢出问题。
定义 QVector < int > array ( 10 ) ; array[ 5 ] = 4 ;
加元素 strArray. append ( "Hello" ) ;
加元素 strArray<< "World!" ;
插入: strArray. insert ( 1 , "这就是在hello和world之间添加" ) ;
删除: strArray. remove ( 1 ) ;
复制(取代): strArray. replace ( 1 , "LEO" ) ;
是否含有contains ( ) 函数是用来查找向量容器内是否含有某个对象。
count ( ) 函数可以找出某个对象出现的次数。
resize ( ) 函数可以在任何时候改变QVector向量容器的体积
capacity ( ) 函数会告诉你向量容器所占内存的实际大小空间。
判断是否包含某元素 qDebug ( ) << Array. contains ( 12 ) ; 末端添加元素:
QVector< int > Array;
Array<< 3 ;
Array. append ( 5 ) ; 种方式
QVector< int > :: iterator num;
for ( num= Array. begin ( ) ; num!= Array. end ( ) ; num++ )
{ qDebug ( ) << * num;
}
for ( int i= 0 ; i< Array. count ( ) ; i++ )
{ qDebug ( ) << Array[ i] ;
} QVector< QString> strArray;
■ QLinkedList
是链式列表,数据项不是连续的内存存储,基于迭代器访问数据项,插入和删除数据项操作时间相同
QLinkedList< QString> list;
list<< "1" << "2" << "3" << "4" ;
QString str;
foreach ( str, list) qDebug ( ) << str;
QLinkedList< QString> :: iterator it;
for ( it = list. begin ( ) ; it != list. end ( ) ; ++ it) { qDebug ( ) << * it;
}
QLinkedList< QString> :: const_iterator it = list. constEnd ( ) ;
while ( it != list. constBegin ( ) )
{ -- it; qDebug ( ) << * it;
}
移除某个节点
list. removeOne ( "4" ) ; 列表大小
list. size ( )
链头位置插入
list. push_front ( "5" ) ; 链尾位置插入
list. push_back ( "5" ) ;
清空
list. clear ( ) ;
■ QStack
类似于堆栈,后入先出的特点,push ( ) 和pop ( ) 用于数据进出栈。
QStack < int > s;
s. isEmpty ( ) ;
s. size ( ) ;
s. push ( ) ;
s. pop ( ) ;
s. top ( ) ;
T & operator[ ] ( int i ) ; QStack< int > stack;
stack. push ( 1 ) ;
stack. push ( 2 ) ;
stack. push ( 3 ) ; while ( ! stack. isEmpty ( ) ) stack. pop ( ) ;
■ QQueue
它的父类是QList, 是个模板类
类似于队列,先入先出的特点,enqueue ( ) 和dequeue ( ) 用于操作数据进出队列。
QQueue< int > Q;
Q. isEmpty ( ) ;
Q. size ( ) ;
Q. clear ( ) ;
Q. enqueue ( ) ;
Q. dequeue ( ) ;
Q. head ( ) ;
Q. last ( ) ;
T & operator[ ] ( int i ) ; QQueue< int > queue;
queue. enqueue ( 1 ) ;
queue. enqueue ( 2 ) ;
queue. enqueue ( 3 ) ; while ( ! queue. isEmpty ( ) ) queue. dequeue ( ) ;
■ 关联容器类
■ QSet
基于散列表的集合模板类,存储数据的顺序不定,查找速度非常快。
QSet类是一个模板类,他是一个哈希表集合。QSet< T> 是Qt的一个普通容器类。QSet存储的值是不指明顺序的,QSet对这些值提供了快速检索的功能。他和QHash很像PS:Set就是键值一样的Hash
QSet< QString> set;
set. insert ( "one" ) ;
set. insert ( "three" ) ;
set << "twelve" << "fifteen" << "nineteen" ; 使用contains ( ) 判断set中是否存在某一项:
if ( ! set. contains ( "ninety-nine" ) ) 遍历整个set
QSetIterator< QWidget * > i ( set) ;
while ( i. hasNext ( ) )
qDebug ( ) << i. next ( ) ; QSet< QWidget * > :: const_iterator i = set. constBegin ( ) ; while ( i != set. constEnd ( ) ) { qDebug ( ) << * i; ++ i; } QSet< QString> set;
foreach ( const QString & value, set)
qDebug ( ) << value; # include <QtCore/QCoreApplication>
# include <QSet>
# include <QDebug> class Data{
public: Data ( const QString & strVal, const int & intVal) { StrVal = strVal; IntVal = intVal; } QString StrVal; int IntVal; friend QDebug operator << ( QDebug os, Data data) { os << "(" << data. StrVal << " ," << data. IntVal << ")" ; return os; }
} ;
int main ( int argc, char * argv[ ] )
{ QCoreApplication a ( argc, argv) ; QSet< Data* > dataSet; dataSet. insert ( new Data ( "ABC" , 0 ) ) ; dataSet. insert ( new Data ( "DEF" , 1 ) ) ; dataSet << new Data ( "AAA" , 2 ) ; dataSet << new Data ( "CCC" , 3 ) ; QSetIterator< Data * > i ( dataSet) ; while ( i. hasNext ( ) ) qDebug ( ) << * ( i. next ( ) ) ; QSet< Data* > :: const_iterator stlI = dataSet. constBegin ( ) ; while ( stlI != dataSet. constEnd ( ) ) { qDebug ( ) << * * stlI; delete * stlI; stlI++ ; } return a. exec ( ) ;
}
■ QMap
QMap存储数据按照键的顺序来存储的,一个键映射一个值。QMap< int , int > map;
map[ 1 ] = 1 ;
map[ 2 ] = 2 ;
map[ 3 ] = 3 ;
QMap< int , int > map;
map. insert ( 1 , 1 ) ;
map. insert ( 2 , 2 ) ;
map. insert ( 3 , 3 ) ; int num = map[ 1 ] ;
■ QMultiMap
是QMap的子类,一个键可以对应多个值。
QMultiMap< int , int > map;
map. insert ( 1 , 1 ) ;
map. insert ( 1 , 2 ) ;
■ QHash
基于散列表来实现的, 查找速度非常快。
和QMap比较
QHash查找速度更快
QMap是按键顺序排序的,QHash数据项任意排序创建, 键值对的方式插入,数据类型随意,这里以键int ,值QString示例。
QHash< int , QString> qhash;
qhash[ 1 ] = "1" ;
qhash[ 2 ] = "2" ;
qhash[ 3 ] = "3" ;
qhash. insert ( 4 , “4 ”) ;
通常,QHash 每个键只允许有一个值。如果用已经存在的键调用 insert ( ) ,先前的值将被删除
qhash. insert ( 4 , "10 ) ;
最后键为4 的值将变成“10 ”。取值;
QString str1= qhash. value ( 1 ) ;
QString str2= qhash[ 2 ] ; 如果qhash里面没有该键值,则返回默认构造值;比如:QString str3= qhash. value ( 5 ) ; 检索某个值是否在里面
if ( qhash. contains ( 9 ) )
{ return false;
} if ( qhash. contains ( 1 ) )
{ return true;
} 查找某个字并获取,一般推荐contains结合value重载函数来实现,QString str;
if ( qhash. contains ( 1 ) )
{ str= qhash. value ( 1 ) ;
}
else
{ str= qhash. value ( 1 , "wert" ) ;
} QHash< int , QString> :: const_iterator it = qhash. constBegin ( ) ;
while ( it != qhash. constEnd ( ) ) { cout << it. key ( ) << ": " << it. value ( ) << Qt:: endl; ++ i;
}
当然不用const_iterator也可以,直接iterator; 删除, 下面两种都可以
qhash. erase ( it) ;
qhash. remove ( key) ;
■ QMultiHash
QMultiHash是QHash的子类,用于处理多值映射的类,与QMultiMap类似。