การรับประกันความซับซ้อนของคอนเทนเนอร์มาตรฐานคืออะไร?


160

เห็นได้ชัดว่า ;-) ภาชนะมาตรฐานมีรูปแบบการรับประกันบางส่วน

การค้ำประกันประเภทใดและความแตกต่างระหว่างภาชนะประเภทต่างๆแตกต่างกันอย่างไร

ทำงานจากหน้า SGI (เกี่ยวกับSTL ) ฉันมาด้วยสิ่งนี้:

Container Types:
================
Container:
    Forward Container
        Reverse Container
            Random Access Container
    Sequence
        Front Insert Sequence
        Back  Insert Sequence
    Associative Container
        Simple   Associative Container
        Pair     Associative Container
        Sorted   Associative Container
        Multiple Associative Container

Container Types mapped to Standard Containers
=============================================

std::vector:    Sequence    Back        Sequence                    Forward/Reverse/Random Container
std::deque:     Sequence    Front/Back  Sequence                    Forward/Reverse/Random Container
std::list:      Sequence    Front/Back  Sequence                    Forward/Reverse Container
std::set:       Sorted/Simple/Unique    Associative Container       Forward Container
std::map:       Sorted/Pair/Unique      Associative Container       Forward Container
std::multiset:  Sorted/Simple/Multiple  Associative Container       Forward Container
std::multimap:  Sorted/Pair/Multiple    Associative Container       Forward Container


Container Guarantees:
=====================

                                                                                  Simp
                                                                                  or
                          For   Rev  Rand        Front  Back  Assoc        Sort   Mult
                    Cont: Cont: Cont Cont: Sequ: Sequ:  Sequ: Cont:        Cont:  Cont:
Copy    Const:      O(n)
Fill    Const:                             O(n)
begin()             O(1)
end()               O(1)
rbegin()                        O(1)
rend()                          O(1)
front()                                    O(1)
push_front()                                     O(1)
pop_front()                                      O(1)
push_back()                                             O(1)
pop_back()                                              O(1)
Insert()                                                                          O(ln(n))
Insert: fill                               O(n)
Insert: range                              O(n)                                   O(kln(n)+n)
size()              O(n)
swap()              O(1)
erase key                                                     O(ln(n))
erase element                                                 O(1)
erase range                                                   O(ln(n)+S)
count()                                                       O(log(n)+k)
find()                                                        O(ln(n))
equal range                                                   O(ln(n))
Lower Bound/Upper Bound                                                    O(ln(n))
Equality                  O(n)
InEquality                O(n)
Element Access                       O(1)

เริ่มต้นที่นี่: ข้อมูลจำเพาะ STL ซับซ้อน จากนั้นอ่านประเภทคอนเทนเนอร์ทั้งหมดในไซต์นั้นและดูข้อกำหนดความซับซ้อนที่ระบุไว้ หวังว่านี่จะช่วยได้!
Chris Jester-Young

1
ฉันขอสำเนางานของคุณเพื่อเรียนในชั้นเรียนได้ไหม?
Dzung Nguyen

1
@nXqd: ดู www.sgi.com/tech/stl
Martin York

1
@MartinYork ลิงก์นั้นตายไปแล้ว
Chani

2
john-ahlgren.blogspot.com/2013/10/…เพียงแค่ดูที่นี่ :)
Shalomi11

คำตอบ:


72

ฉันพบทรัพยากรC ++ มาตรฐานที่ดี อาจเป็นสิ่งที่คุณกำลังมองหา

เวกเตอร์

ก่อสร้าง

vector<T> v;              Make an empty vector.                                     O(1)
vector<T> v(n);           Make a vector with N elements.                            O(n)
vector<T> v(n, value);    Make a vector with N elements, initialized to value.      O(n)
vector<T> v(begin, end);  Make a vector and copy the elements from begin to end.    O(n)

accessors

v[i]          Return (or set) the I'th element.                        O(1)
v.at(i)       Return (or set) the I'th element, with bounds checking.  O(1)
v.size()      Return current number of elements.                       O(1)
v.empty()     Return true if vector is empty.                          O(1)
v.begin()     Return random access iterator to start.                  O(1)
v.end()       Return random access iterator to end.                    O(1)
v.front()     Return the first element.                                O(1)
v.back()      Return the last element.                                 O(1)
v.capacity()  Return maximum number of elements.                       O(1)

การปรับเปลี่ยน

v.push_back(value)         Add value to end.                                                O(1) (amortized)
v.insert(iterator, value)  Insert value at the position indexed by iterator.                O(n)
v.pop_back()               Remove value from end.                                           O(1)
v.assign(begin, end)       Clear the container and copy in the elements from begin to end.  O(n)
v.erase(iterator)          Erase value indexed by iterator.                                 O(n)
v.erase(begin, end)        Erase the elements from begin to end.                            O(n)

สำหรับตู้คอนเทนเนอร์อื่น ๆ ให้ดูที่หน้า


6

ฉันไม่ทราบว่ามีอะไรเหมือนโต๊ะเดียวที่ให้คุณเปรียบเทียบทั้งหมดได้ในคราวเดียว (ฉันไม่แน่ใจว่าตารางนั้นจะเป็นไปได้)

แน่นอนว่าเอกสารมาตรฐาน ISO จะระบุข้อกำหนดความซับซ้อนโดยละเอียดในบางครั้งในตารางที่ค่อนข้างอ่านได้หลายครั้งในเวลาที่มีสัญลักษณ์แสดงหัวข้อย่อยที่อ่านได้น้อยกว่าสำหรับแต่ละวิธี

นอกจากนี้การอ้างอิงไลบรารี STL ที่http://www.cplusplus.com/reference/stl/ให้ความต้องการความซับซ้อนตามความเหมาะสม


0

ตารางการค้นหาด่วนอื่นสามารถดูได้ที่หน้า GitHub นี้

หมายเหตุ: สิ่งนี้ไม่ได้พิจารณาคอนเทนเนอร์ทั้งหมดเช่น unordered_map เป็นต้น แต่ก็ยังถือว่าดีเยี่ยม มันเป็นเพียงรุ่นที่สะอาดกว่านี้

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.