Compare commits

...

3 Commits

Author SHA1 Message Date
Nathan Kolbas
8b700dbe89
Merge cd085e5da1 into 7f0f27d84d 2025-04-18 17:20:50 +02:00
Aaron
7f0f27d84d
[java/de] Corrects the O-Notation of hashmaps (#5294)
Some checks failed
Trigger site build / deploy (push) Has been cancelled
CI / lint (push) Has been cancelled
2025-04-17 15:33:56 +02:00
Nathan Kolbas
cd085e5da1
Fix line length in yaml.md 2025-03-21 12:36:54 -05:00
2 changed files with 5 additions and 3 deletions

View File

@ -129,8 +129,9 @@ public class LearnJavaDe {
// Maps - Eine Sammlung von Objekten, welche eine Verknüpfung von Schlüsseln zu Werten (key => value) vornimmt.
// Eine Map kann keine Duplikate enthalten; Jeder Schlüssel kann genau einen Wert beinhalten.
// HashMaps - Diese Klasse nutzt eine Hashtabelle zur Implementierung eines Map Interfaces.
// Dies erlaubt es zur Laufzeit Standardoperationen wie gib (get) und einfügen (insert)
// selbst für große Mengen in einer konstanten Zeit auszuführen (Laufzeitverhalten O(n)).
// Dies erlaubt es zur Laufzeit Standardoperationen wie gib (get) und einfügen (insert).
// Dies dauert im Mittel nur "konstante" Zeit, auch genannt O(1). Für Details siehe
// https://de.wikipedia.org/wiki/Landau-Symbole und https://de.wikipedia.org/wiki/Hashtabelle
///////////////////////////////////////
// Operatoren

View File

@ -177,7 +177,8 @@ bar:
<<: *base # base anchor will be merged
age: 20
# foo name won't be changed and it will be: John. On the other hand, bar's name will be changed to the base one: Everyone has same name
# foo name won't be changed and it will be: John. On the other hand,
# bar's name will be changed to the base one: Everyone has same name
# YAML also has tags, which you can use to explicitly declare types.
# Syntax: !![typeName] [value]