diff options
| author | Tyge Løvset <[email protected]> | 2021-01-02 23:13:50 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2021-01-02 23:13:50 +0100 |
| commit | 949c6b61cae7bb4665f47a6f27375dd450a23854 (patch) | |
| tree | d4e96ff32e902e62645ed9df92951ed3f5f9ddc4 | |
| parent | 3a384a338654672a0ccdfa6cba101e3872775af2 (diff) | |
| download | STC-modified-949c6b61cae7bb4665f47a6f27375dd450a23854.tar.gz STC-modified-949c6b61cae7bb4665f47a6f27375dd450a23854.zip | |
Moved pics to subfolder.
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | docs/carray_api.md | 2 | ||||
| -rw-r--r-- | docs/cbitset_api.md | 2 | ||||
| -rw-r--r-- | docs/cdeq_api.md | 2 | ||||
| -rw-r--r-- | docs/clist_api.md | 2 | ||||
| -rw-r--r-- | docs/cmap_api.md | 2 | ||||
| -rw-r--r-- | docs/cqueue_api.md | 2 | ||||
| -rw-r--r-- | docs/cset_api.md | 2 | ||||
| -rw-r--r-- | docs/cstack_api.md | 2 | ||||
| -rw-r--r-- | docs/cstr_api.md | 2 | ||||
| -rw-r--r-- | docs/cvec_api.md | 2 | ||||
| -rw-r--r-- | docs/pics/array.jpg (renamed from docs/array.jpg) | bin | 55504 -> 55504 bytes | |||
| -rw-r--r-- | docs/pics/bitset.jpg (renamed from docs/bitset.jpg) | bin | 55529 -> 55529 bytes | |||
| -rw-r--r-- | docs/pics/containers.jpg (renamed from docs/containers.jpg) | bin | 96093 -> 96093 bytes | |||
| -rw-r--r-- | docs/pics/deque.jpg (renamed from docs/deque.jpg) | bin | 59235 -> 59235 bytes | |||
| -rw-r--r-- | docs/pics/list.jpg (renamed from docs/list.jpg) | bin | 46891 -> 46891 bytes | |||
| -rw-r--r-- | docs/pics/map.jpg (renamed from docs/map.jpg) | bin | 73217 -> 73217 bytes | |||
| -rw-r--r-- | docs/pics/queue.jpg (renamed from docs/queue.jpg) | bin | 43854 -> 43854 bytes | |||
| -rw-r--r-- | docs/pics/set.jpg (renamed from docs/set.jpg) | bin | 19661 -> 19661 bytes | |||
| -rw-r--r-- | docs/pics/stack.jpg (renamed from docs/stack.jpg) | bin | 39066 -> 39066 bytes | |||
| -rw-r--r-- | docs/pics/string.jpg (renamed from docs/string.jpg) | bin | 7898 -> 7898 bytes | |||
| -rw-r--r-- | docs/pics/vector.jpg (renamed from docs/vector.jpg) | bin | 49819 -> 49819 bytes |
22 files changed, 11 insertions, 11 deletions
@@ -1,4 +1,4 @@ -
+
STC - Standard Template Containers for C
========================================
diff --git a/docs/carray_api.md b/docs/carray_api.md index 70dc0870..f9389b0e 100644 --- a/docs/carray_api.md +++ b/docs/carray_api.md @@ -1,4 +1,4 @@ - + # Container [carray](../stc/carray.h): Dynamic 1/2/3 Dimensional Array This is 1D, 2D and 3D arrays, which are allocated from heap in one single contiguous block of memory. diff --git a/docs/cbitset_api.md b/docs/cbitset_api.md index 7da433b2..be4bb4bc 100644 --- a/docs/cbitset_api.md +++ b/docs/cbitset_api.md @@ -1,4 +1,4 @@ - + # Container [cbitset](../stc/cbitset.h): Bitset This describes the API of type **cbitset**. See [std::bitset](https://en.cppreference.com/w/cpp/utility/bitset) or diff --git a/docs/cdeq_api.md b/docs/cdeq_api.md index 2ba49df4..12c2ffaf 100644 --- a/docs/cdeq_api.md +++ b/docs/cdeq_api.md @@ -1,4 +1,4 @@ - + # Container [cdeq](../stc/cdeq.h): Double Ended Queue (Deque) A **cdeq** is an indexed sequence container that allows fast insertion and deletion at both its beginning and its end. diff --git a/docs/clist_api.md b/docs/clist_api.md index 3cdd948b..437b0321 100644 --- a/docs/clist_api.md +++ b/docs/clist_api.md @@ -1,4 +1,4 @@ - + # Container [clist](../stc/clist.h): Forward 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 24c82dc0..da31237b 100644 --- a/docs/cmap_api.md +++ b/docs/cmap_api.md @@ -1,4 +1,4 @@ - + # Container [cmap](../stc/cmap.h): Unordered Map A **cmap** is an associative container that contains key-value pairs with unique keys. Search, insertion, and removal of elements have average constant-time complexity. diff --git a/docs/cqueue_api.md b/docs/cqueue_api.md index 9a4a9939..3a3da26b 100644 --- a/docs/cqueue_api.md +++ b/docs/cqueue_api.md @@ -1,4 +1,4 @@ - + # Container [cqueue](../stc/cqueue.h): Queue This describes the API of the queue type **cqueue**. diff --git a/docs/cset_api.md b/docs/cset_api.md index 2c2f8b22..995cc95a 100644 --- a/docs/cset_api.md +++ b/docs/cset_api.md @@ -1,4 +1,4 @@ -
+
# Container [cset](../stc/cmap.h): Unordered Set
A **cset** is an associative container that contains a set of unique objects of type Key. Search, insertion, and removal have average constant-time complexity. See [std::unordered_set](https://en.cppreference.com/w/cpp/container/unordered_set) for a similar c++ class.
diff --git a/docs/cstack_api.md b/docs/cstack_api.md index a52efe40..7d75ecdf 100644 --- a/docs/cstack_api.md +++ b/docs/cstack_api.md @@ -1,4 +1,4 @@ - + # 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 99bd9136..4ea5de64 100644 --- a/docs/cstr_api.md +++ b/docs/cstr_api.md @@ -1,4 +1,4 @@ - + # 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 e5156d09..054aa8b9 100644 --- a/docs/cvec_api.md +++ b/docs/cvec_api.md @@ -1,4 +1,4 @@ - + # Container [cvec](../stc/cvec.h): Vector A **cvec** is a sequence container that encapsulates dynamic size arrays. diff --git a/docs/array.jpg b/docs/pics/array.jpg Binary files differindex 4aede261..4aede261 100644 --- a/docs/array.jpg +++ b/docs/pics/array.jpg diff --git a/docs/bitset.jpg b/docs/pics/bitset.jpg Binary files differindex 7445a6c2..7445a6c2 100644 --- a/docs/bitset.jpg +++ b/docs/pics/bitset.jpg diff --git a/docs/containers.jpg b/docs/pics/containers.jpg Binary files differindex cc56a141..cc56a141 100644 --- a/docs/containers.jpg +++ b/docs/pics/containers.jpg diff --git a/docs/deque.jpg b/docs/pics/deque.jpg Binary files differindex 5cdcd8ca..5cdcd8ca 100644 --- a/docs/deque.jpg +++ b/docs/pics/deque.jpg diff --git a/docs/list.jpg b/docs/pics/list.jpg Binary files differindex 6e642696..6e642696 100644 --- a/docs/list.jpg +++ b/docs/pics/list.jpg diff --git a/docs/map.jpg b/docs/pics/map.jpg Binary files differindex 6de936d9..6de936d9 100644 --- a/docs/map.jpg +++ b/docs/pics/map.jpg diff --git a/docs/queue.jpg b/docs/pics/queue.jpg Binary files differindex 43477c9a..43477c9a 100644 --- a/docs/queue.jpg +++ b/docs/pics/queue.jpg diff --git a/docs/set.jpg b/docs/pics/set.jpg Binary files differindex dfad52dd..dfad52dd 100644 --- a/docs/set.jpg +++ b/docs/pics/set.jpg diff --git a/docs/stack.jpg b/docs/pics/stack.jpg Binary files differindex 365a2b3e..365a2b3e 100644 --- a/docs/stack.jpg +++ b/docs/pics/stack.jpg diff --git a/docs/string.jpg b/docs/pics/string.jpg Binary files differindex f37416b1..f37416b1 100644 --- a/docs/string.jpg +++ b/docs/pics/string.jpg diff --git a/docs/vector.jpg b/docs/pics/vector.jpg Binary files differindex 125e8504..125e8504 100644 --- a/docs/vector.jpg +++ b/docs/pics/vector.jpg |
