Skip to content

tracyqwerty/tracystl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TracySTL

A tiny C++ standard template library. Powered by ChatGPT4.

Allocator

v2-59ed19947f0f359e9a7e1ec585958676_1440w

allocator's code

Iterator

20200804102957172

iterator's code

Containers

Sequence Containers

vector

vector's code

list

list's code

note1

Here for simplicity, we use:

node_allocator::destroy(pos.node_->as_node()); 
node_allocator::deallocate(pos.node_->as_node());

destroy is called directly on the node rather than on the value it contains. If the node contains any resources that require proper destruction (such as raw pointers), this approach would be necessary. However, if the node only contains simple data types or objects that manage their own resources, calling destroy on the node might not be needed. After the node has been destroyed, the method then deallocates the memory associated with the node.

Please notice that the usual practice in C++ is first destroying an object before deallocating its memory, something looks like:

data_allocator::destroy(tracystl::address_of(pos.node_->as_node()->data_)); 
node_allocator::deallocate(pos.node_->as_node());

This method first calls destroy on the value contained in a node, which would call the destructor of the object (not the node itself). Then it calls deallocate on the node, which should free the memory associated with the node. This approach is consistent with the usual practice in C++ of first destroying an object before deallocating its memory.

deque

Associative containers

Testing

We used Google Test Framework for unit tests.

Reference

STL源码剖析

TODO

  • Instead of using ::operator new(), realize alloc::allocate(n * sizeof(T)) and create a threadpool.
  • Address list-note1.

About

A tiny C++ standard template library.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages