@@ -14,7 +14,7 @@ Each project is configured in specific environments, as described below:
14
14
15
15
- C++ project: C++20 / [ CMake] ( https://cmake.org/ ) build / [ GNU Scientific Library (GSL)] ( https://www.gnu.org/software/gsl/ ) , [ Google Test] ( https://google.github.io/googletest/ ) , [ Google Benchmark] ( https://github.com/google/benchmark ) , [ fmt] ( https://github.com/fmtlib/fmt ) packages / [ vcpkg] ( https://github.com/microsoft/vcpkg ) package manager
16
16
- Python project: Python 3.11 / [ Poetry] ( https://python-poetry.org/ ) build / [ NumPy] ( https://numpy.org/ ) , [ SciPy] ( https://www.scipy.org/ ) , [ NetworkX] ( https://networkx.org/ ) , [ pytest] ( https://docs.pytest.org/ ) , [ pytest-benchmark] ( https://pytest-benchmark.readthedocs.io/en/latest/ ) packages
17
- - Java project: Java 21 / [ Gradle] ( https://gradle.org/ ) build / [ Guava] ( https://github.com/google/guava ) , [ JUnit] ( https://junit.org/ ) , [ Java Microbenchmark Harness (JMH)] ( https://github.com/openjdk/jmh ) libraries
17
+ - Java project: Java 21 / [ Gradle] ( https://gradle.org/ ) build / [ Google Guava] ( https://github.com/google/guava ) , [ JUnit] ( https://junit.org/ ) , [ Java Microbenchmark Harness (JMH)] ( https://github.com/openjdk/jmh ) libraries
18
18
19
19
## Table of Contents
20
20
@@ -744,7 +744,7 @@ sort_dict = SortedDict({'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5})
744
744
** Java declaration/ methods (binary search tree based)**
745
745
746
746
```java
747
- // TreeMap (based on red-black tree)
747
+ // tree map (based on red-black tree)
748
748
import java.util. TreeMap ;
749
749
var map = new TreeMap<Integer , Integer > ();
750
750
var map = new TreeMap<Integer , Integer > (Collections . reverseOrder());
@@ -754,7 +754,7 @@ keySet(), values(), entrySet(), containsKey("a"), containsValue(1), replace("a",
754
754
firstKey(), lastKey(), lowerKey(" b" ), higherKey(" b" ), floorKey(" b" ), ceilingKey(" b" ),pollFirstEntry(), pollLastEntry(),
755
755
headMap(" c" ), tailMap(" c" ), subMap(" a" , " c" ), descendingMap(), descendingKeySet()
756
756
757
- // treeSet (based on red-black tree)
757
+ // tree set (based on red-black tree)
758
758
import java.util. TreeSet ;
759
759
var set = new TreeSet<Integer > ();
760
760
var set = new TreeSet<Integer > (Collections . reverseOrder());
0 commit comments