Extending std::list

后端 未结 8 2109
小蘑菇
小蘑菇 2021-01-31 13:00

I need to use lists for my program and needed to decide if I use std::vector or std::list. The problem with vector is that there is no remove method and with list that there is

相关标签:
8条回答
  • 2021-01-31 13:11

    There is no need to call destructor of std::list , because you already derive from std::list when destructor called for myList automatically std::list destructor will be called.

    0 讨论(0)
  • 2021-01-31 13:14

    Depending on your needs, you should use std::vector (if you need often appends/removes at the end, and random access), or std::deque (if you need often appends/removes at the end or at the beginning, and your dataset is huge, and still want random access). Here is a good picture showing you how to make the decision:


    (source: adrinael.net)

    0 讨论(0)
  • 2021-01-31 13:17

    Given your original problem statement,

    I need to use lists for my program and needed to decide if I use std::vector or std::list. The problem with vector is that there is no remove method and with list that there is no operator [].

    there is no need to create your own list class (this is not a wise design choice anyway, because std::list does not have a virtual destructor, which is a strong indication that it is not intended to be used as a base class).

    You can still achieve what you want using std::vector and the std::remove function. If v is a std::vector<T>, then to remove the value value, you can simply write:

    #include <vector>
    #include <algorithm>
    T value = ...; // whatever
    v.erase(std::remove(v.begin(), v.end(), value), v.end());
    
    0 讨论(0)
  • 2021-01-31 13:19

    Vectors have the erase method that can remove elements. Is that not sufficient?

    0 讨论(0)
  • 2021-01-31 13:22

    In addition to other excellent comments, the best way to extend a standard container is not by derivation, but writing free functions. For instance, see how Boost String Algorithms can be used to extend std::string and other string classes.

    0 讨论(0)
  • 2021-01-31 13:28

    All template code should be put in header file. This fill fix linking problems (that's the simplest way). The reason it happens is because compilers compiles every source (.cc) file separately from other files. On the other hand it needs to know what code exactly it needs to create (i.e. what is the T in template is substituted with), and it has no other way to know it unless the programmer tells it explicitly or includes all the code when template instantiation happens. I.e. when mylist.cc is compiled, it knows nothing about mylist users and what code needs to be created. On the other hand if listuser.cc is compiled, and all the mylist code is present, the compiler creates needed mylist code. You can read more about it in here or in Stroustrup.

    Your code has problems, what if user requests negative or too large (more than amount of elements in the list). And i didn't look too much.

    Besides, i don't know how u plan to use it, but your operator[] is O(N) time, which will probably easily lead to O(N*N) loops...

    0 讨论(0)
提交回复
热议问题