From 9141d545613a80e0b15ff271f38c73203fd08f7b Mon Sep 17 00:00:00 2001
From: karpav74 <147328176+karpav74@users.noreply.github.com>
Date: Sun, 8 Oct 2023 14:49:33 +0000
Subject: [PATCH 1/2] t
---
README.md | 3 ---
1 file changed, 3 deletions(-)
diff --git a/README.md b/README.md
index a584a2ae..7acde73f 100644
--- a/README.md
+++ b/README.md
@@ -7,9 +7,6 @@
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=gods&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=gods)
[![PyPI](https://img.shields.io/badge/License-BSD_2--Clause-green.svg)](https://github.com/emirpasic/gods/blob/master/LICENSE)
-# GoDS (Go Data Structures)
-
-Implementation of various data structures and algorithms in Go.
## Data Structures
From 3ec94bc08c77e780281502b21c195f675e00c4a3 Mon Sep 17 00:00:00 2001
From: karpav74 <147328176+karpav74@users.noreply.github.com>
Date: Sat, 2 Dec 2023 20:44:56 +0200
Subject: [PATCH 2/2] Update README.md
---
README.md | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/README.md b/README.md
index 7acde73f..c5126fa4 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
[![PyPI](https://img.shields.io/badge/License-BSD_2--Clause-green.svg)](https://github.com/emirpasic/gods/blob/master/LICENSE)
-## Data Structures
+## Data Structures:
- [Containers](#containers)
- [Lists](#lists)
@@ -56,7 +56,7 @@
- [Appendix](#appendix)
-## Containers
+## Containers:
All data structures implement the container interface with the following methods:
@@ -103,7 +103,7 @@ Containers are either ordered or unordered. All ordered containers provide [stat
| | [PriorityQueue](#priorityqueue) | yes | yes* | no | index |
| | | | *reversible | | *bidirectional |
-### Lists
+### Lists:
A list is a data structure that stores values and may have repeated values.
@@ -129,7 +129,7 @@ type List interface {
}
```
-#### ArrayList
+#### ArrayList:
A [list](#lists) backed by a dynamic array that grows and shrinks implicitly.
@@ -166,7 +166,7 @@ func main() {
}
```
-#### SinglyLinkedList
+#### SinglyLinkedList:
A [list](#lists) where each element points to the next element in the list.
@@ -203,7 +203,7 @@ func main() {
}
```
-#### DoublyLinkedList
+#### DoublyLinkedList:
A [list](#lists) where each element points to the next and previous elements in the list.