diff options
| author | Tyge Løvset <[email protected]> | 2020-11-26 17:31:24 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2020-11-26 17:31:24 +0100 |
| commit | 023465ff13792803dc90cda01f98d310417fee3f (patch) | |
| tree | 0d5e5a01be8906910047f27b3b9583f9a88c1be1 /stc/cqueue.h | |
| parent | bc47c483bf4d9dfe95d5068193a3f065204589ad (diff) | |
| download | STC-modified-023465ff13792803dc90cda01f98d310417fee3f.tar.gz STC-modified-023465ff13792803dc90cda01f98d310417fee3f.zip | |
Added link to beginning of cstr API documentation, and some small docu fixes.
Diffstat (limited to 'stc/cqueue.h')
| -rw-r--r-- | stc/cqueue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stc/cqueue.h b/stc/cqueue.h index cf549cd2..e0a34636 100644 --- a/stc/cqueue.h +++ b/stc/cqueue.h @@ -23,12 +23,12 @@ #ifndef CQUEUE__H__
#define CQUEUE__H__
-/* Priority Queue using heap, with adapter class (normally cvec).
+/* Queue adapter, default uses clist.
#include <stc/crandom.h>
#include <stc/cqueue.h>
using_clist(i, int);
- using_cqueue(i, clist_i); // min-heap (increasing values)
+ using_cqueue(i, clist_i);
int main() {
int n = 10000000;
|
