参考:STL标准库 、项目MytinySTL 、STL源码刨析——侯捷著

MyTinySTL/
    adapter/
        queue.h
        stack.h
    algorithm/
        alog.h
        algobase.h
        algorithm.h
        heap_algo.h
        numeric.h
        set_algo.h
    allocator/
        alloc.h
        allocator.h
        construct.h
    container/
        associative_container/
            rb_tree.h
            set.h
            map.h
            hashtable.h
            unordered_map.h
            unordered_set.h
        sequence_container/
            astring.h
            vector.h
            deque.h
            list.h
    function/
        functional.h
    iterator/
        iterator.h
    utils/
        exceptdef.h
        memory.h
        type_traits.h
        unitialized.h
        util.h
Test/
    test_allocator.h
    test_functional.h
    test_iterator.h
    test_vector.h
    test_util.h
    test_algorithm.h
    test_list.h
    test_deque.h
    test_stack.h
    test_queue.h
    test_reverse_iterator.h
    test_hash.h
    未完待续!