Commit Graph

64 Commits

Author SHA1 Message Date
Emir Pasic
4ea857183a - optimization to bulk insert into heap as per @cristaloleg suggestion #32 2016-09-07 03:51:19 +02:00
Emir Pasic
62b6e90ed7 - documentation update on removing elements while iterating #28 2016-08-07 02:03:02 +02:00
Emir Pasic
0790df9fd0 - errcheck 2016-08-07 01:54:22 +02:00
Emir Pasic
8e34c656ab Update README.md 2016-07-16 07:32:26 +02:00
Emir Pasic
7728a69eae - benchmarks in documentation 2016-07-16 07:29:43 +02:00
Emir Pasic
63d434cce6 - benchmarks in documentation 2016-07-16 07:26:40 +02:00
Emir Pasic
3066d0de5e - benchmarks in documentation 2016-07-16 07:24:44 +02:00
Emir Pasic
ce647c94dd - btree example and documentation 2016-07-16 06:57:46 +02:00
Emir Pasic
efcbbe6274 - detailed extensive tests with breakdown on number of elements 2016-07-16 04:40:16 +02:00
Emir Pasic
7c82c74b00 - TreeBidiMap documentation 2016-07-03 04:36:21 +02:00
Emir Pasic
20e2a00f13 - start on treebidimap 2016-07-02 12:16:38 +02:00
Emir Pasic
52d942a053 - hashbidimap documentation and example 2016-07-01 07:39:46 +02:00
Emir Pasic
e49a74aa91 - test iterator end on reverse-iterable data structures
- fix red-black tree iteration with explicit begin and end states
- examples for iterators (with index and key) (with forward and reverse iteration)
2016-06-27 03:09:20 +02:00
Emir Pasic
b304f5eb58 - add reversible iterators to array stack 2016-06-25 19:11:20 +02:00
Emir Pasic
d7a31571cc - add reversible iterators to lists (array list and doubly-linked list)
- documentation and tests updates
2016-06-25 18:17:48 +02:00
Emir Pasic
59bebe43ce - update all documentation to be in godoc style 2016-06-25 17:02:21 +02:00
Emir Pasic
2ccfba5f93 - replace timsort with go's sort 2016-06-25 05:51:41 +02:00
Emir Pasic
7b3992bef3 - replace timsort with go's sort 2016-06-25 05:35:13 +02:00
Emir Pasic
faeea55fc9 Update README.md 2016-06-24 21:58:18 +02:00
Emir Pasic
4d3c47ce2a - go report badge 2016-06-24 18:29:35 +02:00
Emir Pasic
0631cc2647 Update README.md 2016-06-24 17:56:26 +02:00
Emir Pasic
f3b33064fa - update examples and documentation 2016-06-24 07:08:11 +02:00
Emir Pasic
8aba2d70fe - update main documentation
- create examples for enumerables operations
2016-06-24 06:18:51 +02:00
Emir Pasic
beb6027d2f - documentation updates 2016-06-24 04:12:22 +02:00
Emir Pasic
07e8634b62 Update README.md 2016-06-24 02:41:16 +02:00
Emir Pasic
49c50d0c4d Update README.md 2016-06-24 00:30:35 +02:00
Emir Pasic
342ccbef84 - naming conventions (calling interfaces by what they are) 2016-06-22 03:15:08 +02:00
Emir Pasic
56b8a59488 - update all lists to use "value" terminology for coherence, e.g. Add(values...) rather than Add(elements...) 2016-06-21 03:39:47 +02:00
Emir Pasic
dd0fbaa365 - add insert for doublylinkedlist 2016-06-21 03:29:29 +02:00
Emir Pasic
875dab737f - add insert for singlylinkedlist 2016-06-21 03:15:02 +02:00
Emir Pasic
c7abdd28b3 - add insert for list and arraylist 2016-06-21 02:22:20 +02:00
Emir Pasic
16d751cd27 - Add Min() and Max() function to the tree map with test and documentation update 2016-06-13 01:05:07 +02:00
Emir Pasic
d13e3d6b6a - Add Left(), Right(), Floor() and Ceiling() function to the red black tree with test and documentation update 2016-06-13 00:52:16 +02:00
Emir Pasic
87ab028182 - update documentation to account for changes in the red-black tree (exposing root) 2016-03-23 06:22:23 +01:00
buddhamagnet
59e8cf4cdd correct examples 2015-03-16 16:38:01 +00:00
Emir Pasic
538ed6b0eb documentation example on swap method 2015-03-14 00:37:17 +01:00
Emir Pasic
c50f07c2ac binary heap (examples and documentation) 2015-03-13 23:31:02 +01:00
Emir Pasic
092a115642 - add swap method to arraylist (consider adding this on all lists) 2015-03-13 00:06:49 +01:00
Emir Pasic
133677039b change growth factor to doube 2015-03-10 23:30:00 +01:00
Emir Pasic
67f317df5a make linked list stack use our singly linked list 2015-03-10 04:31:01 +01:00
Emir Pasic
3aa1340d55 singly linked list (test+documentation). simplify of doubly linked list remove method 2015-03-10 04:14:40 +01:00
Emir Pasic
e112848ae9 documentation on doubly linked list 2015-03-10 03:21:55 +01:00
Emir Pasic
99a0e60c8e Update README.md 2015-03-08 04:41:03 +01:00
Emir Pasic
7c7da288e2 examples update on sorts 2015-03-08 03:27:27 +01:00
Emir Pasic
c5826ac043 sorting on containers, lists and as a utils method (test+documentation) 2015-03-08 03:13:26 +01:00
emirpasic
c6c71809f9 - starting work on sorting functions using tim's sort obtained from [https://github.com/psilva261/timsort] 2015-03-07 20:27:38 +01:00
emirpasic
19ca842c34 - starting work on sorting functions using tim's sort obtained from [https://github.com/psilva261/timsort] 2015-03-07 20:25:27 +01:00
emirpasic
f18fd78d3c - documentation (creating a common containers interface for all data structures) 2015-03-07 19:24:26 +01:00
emirpasic
28f559cc09 ArrayList addition (inc. test, example and documentation) 2015-03-07 18:05:34 +01:00
emirpasic
fdbea4bd27 - documentation for arraylist 2015-03-07 17:20:31 +01:00