//! [0] QLinkedList integerList; QLinkedList timeList; //! [0] //! [1] QLinkedList list; list << "one" << "two" << "three"; // list: ["one", "two", "three"] //! [1] //! [2] QLinkedList list; ... while (!list.isEmpty()) delete list.takeFirst(); //! [2] //! [3] QLinkedList list; list.append("one"); list.append("two"); list.append("three"); // list: ["one", "two", "three"] //! [3] //! [4] QLinkedList list; list.prepend("one"); list.prepend("two"); list.prepend("three"); // list: ["three", "two", "one"] //! [4] //! [5] QList list; list << "sun" << "cloud" << "sun" << "rain"; list.removeAll("sun"); // list: ["cloud", "rain"] //! [5] //! [6] QList list; list << "sun" << "cloud" << "sun" << "rain"; list.removeOne("sun"); // list: ["cloud", "sun", "rain"] //! [6] //! [7] QLinkedList list; list.append("January"); list.append("February"); ... list.append("December"); QLinkedList::iterator i; for (i = list.begin(); i != list.end(); ++i) cout << *i << endl; //! [7] //! [8] QLinkedList list; ... QLinkedList::iterator it = qFind(list.begin(), list.end(), "Joel"); if (it != list.end()) cout << "Found Joel" << endl; //! [8] //! [9] QLinkedList::iterator i; for (i = list.begin(); i != list.end(); ++i) *i += 2; //! [9] //! [10] QLinkedList list; ... QLinkedList::iterator i = list.begin(); while (i != list.end()) { if ((*i).startsWith("_")) i = list.erase(i); else ++i; } //! [10] //! [11] QLinkedList::iterator i = list.begin(); while (i != list.end()) { QLinkedList::iterator previous = i; ++i; if ((*previous).startsWith("_")) list.erase(previous); } //! [11] //! [12] // WRONG while (i != list.end()) { if ((*i).startsWith("_")) list.erase(i); ++i; } //! [12] //! [13] if (*it == "Hello") *it = "Bonjour"; //! [13] //! [14] QLinkedList list; list.append("January"); list.append("February"); ... list.append("December"); QLinkedList::const_iterator i; for (i = list.constBegin(); i != list.constEnd(); ++i) cout << *i << endl; //! [14] //! [15] QLinkedList list; ... QLinkedList::iterator it = qFind(list.constBegin(), list.constEnd(), "Joel"); if (it != list.constEnd()) cout << "Found Joel" << endl; //! [15] //! [16] std::list stdlist; list.push_back(1.2); list.push_back(0.5); list.push_back(3.14); QLinkedList list = QLinkedList::fromStdList(stdlist); //! [16] //! [17] QLinkedList list; list << 1.2 << 0.5 << 3.14; std::list stdlist = list.toStdList(); //! [17]