Skip to content

Commit d374104

Browse files
committed
Merge branch 'develop'
2 parents fe25cca + f16de3b commit d374104

File tree

3 files changed

+95
-75
lines changed

3 files changed

+95
-75
lines changed

.vscode/settings.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ Each project is configured in specific environments, as described below:
1414

1515
- 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
1616
- 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
1818

1919
## Table of Contents
2020

21+
- [Project Environments](#project-environments)
22+
- [Table of Contents](#table-of-contents)
2123
- [Data structures](#data-structures)
2224
- [:train: Array](#train-array)
2325
- [:chart\_with\_upwards\_trend: Graph](#chart_with_upwards_trend-graph)
@@ -744,7 +746,7 @@ sort_dict = SortedDict({'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5})
744746
**Java declaration/methods (binary search tree based)**
745747

746748
```java
747-
// TreeMap (based on red-black tree)
749+
// tree map (based on red-black tree)
748750
import java.util.TreeMap;
749751
var map = new TreeMap<Integer, Integer>();
750752
var map = new TreeMap<Integer, Integer>(Collections.reverseOrder());
@@ -754,7 +756,7 @@ keySet(), values(), entrySet(), containsKey("a"), containsValue(1), replace("a",
754756
firstKey(), lastKey(), lowerKey("b"), higherKey("b"), floorKey("b"), ceilingKey("b"),pollFirstEntry(), pollLastEntry(),
755757
headMap("c"), tailMap("c"), subMap("a", "c"), descendingMap(), descendingKeySet()
756758

757-
// treeSet (based on red-black tree)
759+
// tree set (based on red-black tree)
758760
import java.util.TreeSet;
759761
var set = new TreeSet<Integer>();
760762
var set = new TreeSet<Integer>(Collections.reverseOrder());

0 commit comments

Comments
 (0)