From 382d2fdcd7b676ee43209e158ecefeac25f657e2 Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Thu, 31 Dec 2020 21:30:51 +0100 Subject: Added images. --- docs/cdeq_api.md | 1 + docs/clist_api.md | 1 + docs/cmap_api.md | 1 + docs/cqueue_api.md | 1 + docs/cstack_api.md | 1 + docs/cstr_api.md | 1 + docs/cvec_api.md | 1 + docs/deque.jpg | Bin 0 -> 59235 bytes docs/list.jpg | Bin 0 -> 12075 bytes docs/map.jpg | Bin 0 -> 121156 bytes docs/queue.jpg | Bin 0 -> 49078 bytes docs/stack.jpg | Bin 0 -> 71092 bytes docs/string.jpg | Bin 0 -> 29250 bytes docs/vector.jpg | Bin 0 -> 64200 bytes 14 files changed, 7 insertions(+) create mode 100644 docs/deque.jpg create mode 100644 docs/list.jpg create mode 100644 docs/map.jpg create mode 100644 docs/queue.jpg create mode 100644 docs/stack.jpg create mode 100644 docs/string.jpg create mode 100644 docs/vector.jpg (limited to 'docs') diff --git a/docs/cdeq_api.md b/docs/cdeq_api.md index 47a3fba9..e3ab6e6f 100644 --- a/docs/cdeq_api.md +++ b/docs/cdeq_api.md @@ -1,3 +1,4 @@ +![Deque](docs/deque.jpg) # Container [cdeq](../stc/cdeq.h): Double Ended Queue (Deque) This describes the API of deque type **cdeq**. diff --git a/docs/clist_api.md b/docs/clist_api.md index 4958bc04..dbe2431b 100644 --- a/docs/clist_api.md +++ b/docs/clist_api.md @@ -1,3 +1,4 @@ +![List](docs/list.jpg) # Container [clist](../stc/clist.h): Singly Linked List This is similar to c++ [std::forward_list](https://en.cppreference.com/w/cpp/container/forward_list), but supports both diff --git a/docs/cmap_api.md b/docs/cmap_api.md index 9e65a69e..705c1324 100644 --- a/docs/cmap_api.md +++ b/docs/cmap_api.md @@ -1,3 +1,4 @@ +![Map](docs/map.jpg) # Container [cmap](../stc/cmap.h): Unordered Map Elements are pairs of keys and mapped values. Implemented as open hashing without tombstones. Highly customizable and fast. diff --git a/docs/cqueue_api.md b/docs/cqueue_api.md index f51b78c3..4f5aa63f 100644 --- a/docs/cqueue_api.md +++ b/docs/cqueue_api.md @@ -1,3 +1,4 @@ +![Queue](docs/queue.jpg) # Container [cqueue](../stc/cqueue.h): Queue This describes the API of the queue type **cqueue**. diff --git a/docs/cstack_api.md b/docs/cstack_api.md index 7f0c1636..20990e62 100644 --- a/docs/cstack_api.md +++ b/docs/cstack_api.md @@ -1,3 +1,4 @@ +![Stack](docs/stack.jpg) # Container [cstack](../stc/cstack.h): Stack This describes the API of the stack type **cstack**. diff --git a/docs/cstr_api.md b/docs/cstr_api.md index 912d66a5..f612b664 100644 --- a/docs/cstr_api.md +++ b/docs/cstr_api.md @@ -1,3 +1,4 @@ +![String](docs/string.jpg) # Container [cstr](../stc/cstr.h): String This describes the API of string type **cstr_t**. diff --git a/docs/cvec_api.md b/docs/cvec_api.md index b3253935..70e1a6c0 100644 --- a/docs/cvec_api.md +++ b/docs/cvec_api.md @@ -1,3 +1,4 @@ +![Vector](docs/vector.jpg) # Container [cvec](../stc/cvec.h): Vector This describes the API of vector type **cvec**. diff --git a/docs/deque.jpg b/docs/deque.jpg new file mode 100644 index 00000000..5cdcd8ca Binary files /dev/null and b/docs/deque.jpg differ diff --git a/docs/list.jpg b/docs/list.jpg new file mode 100644 index 00000000..e5e2f460 Binary files /dev/null and b/docs/list.jpg differ diff --git a/docs/map.jpg b/docs/map.jpg new file mode 100644 index 00000000..bf73af15 Binary files /dev/null and b/docs/map.jpg differ diff --git a/docs/queue.jpg b/docs/queue.jpg new file mode 100644 index 00000000..54a2cd8b Binary files /dev/null and b/docs/queue.jpg differ diff --git a/docs/stack.jpg b/docs/stack.jpg new file mode 100644 index 00000000..5fb22c5d Binary files /dev/null and b/docs/stack.jpg differ diff --git a/docs/string.jpg b/docs/string.jpg new file mode 100644 index 00000000..030b114f Binary files /dev/null and b/docs/string.jpg differ diff --git a/docs/vector.jpg b/docs/vector.jpg new file mode 100644 index 00000000..01852d39 Binary files /dev/null and b/docs/vector.jpg differ -- cgit v1.2.3