summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Fleury <emmanuel.fleury@gmail.com>2019-08-06 18:48:12 +0200
committerEmmanuel Fleury <emmanuel.fleury@gmail.com>2020-09-02 14:38:10 +0200
commitcbae555a98b07ca7f8455856376f41c75f1677e2 (patch)
tree5eb0634a1b49d25a8c285c75c18e23c80e353a37
parent34f03f01c898d54b9e095643d9094137c3153738 (diff)
downloadglib-cbae555a98b07ca7f8455856376f41c75f1677e2.tar.gz
Add some notes on complexity in glib/ghash.c
Related to issue #3
-rw-r--r--glib/ghash.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/glib/ghash.c b/glib/ghash.c
index 4fe2912fb..40a0fb2ca 100644
--- a/glib/ghash.c
+++ b/glib/ghash.c
@@ -68,13 +68,14 @@
* given a key the value can be found quickly
*
* A #GHashTable provides associations between keys and values which is
- * optimized so that given a key, the associated value can be found
- * very quickly.
+ * optimized so that given a key, the associated value can be found,
+ * inserted or removed in amortized O(1). All operations going through
+ * each element take O(n) time (list all keys/values, table resize, etc.).
*
* Note that neither keys nor values are copied when inserted into the
* #GHashTable, so they must exist for the lifetime of the #GHashTable.
* This means that the use of static strings is OK, but temporary
- * strings (i.e. those created in buffers and those returned by GTK+
+ * strings (i.e. those created in buffers and those returned by GTK
* widgets) should be copied with g_strdup() before being inserted.
*
* If keys or values are dynamically allocated, you must be careful to