@@ -668,47 +668,49 @@ def putMax[K, V](m: Map[K, V], k: K, v: V): Map[K, V] = {
668
668
}
669
669
}
670
670
671
- // Section: internal utilities for tests:
671
+ /// Section: internal utilities
672
+ namespace internal {
673
+ // Section: for tests and invariants:
672
674
673
- /// Check if a map `m` is balanced.
674
- def isBalanced[K, V](m: Map[K, V]): Bool = {
675
- m match {
676
- case Tip() => true
677
- case Bin(_, _, _, l, r) =>
678
- val bothSmall = l.size() + r.size() <= 1
679
- val leftSmallEnough = l.size() <= delta * r.size()
680
- val rightSmallEnough = r.size() <= delta * l.size()
681
- (bothSmall || (leftSmallEnough && rightSmallEnough)) && isBalanced(l) && isBalanced(r)
675
+ /// Check if a map `m` is balanced.
676
+ def isBalanced[K, V](m: Map[K, V]): Bool = {
677
+ m match {
678
+ case Tip() => true
679
+ case Bin(_, _, _, l, r) =>
680
+ val bothSmall = l.size() + r.size() <= 1
681
+ val leftSmallEnough = l.size() <= delta * r.size()
682
+ val rightSmallEnough = r.size() <= delta * l.size()
683
+ (bothSmall || (leftSmallEnough && rightSmallEnough)) && isBalanced(l) && isBalanced(r)
684
+ }
682
685
}
683
- }
684
686
685
- // Section: prettyprinting for tree maps and list maps
687
+ // Section: prettyprinting for tree maps and list maps:
686
688
687
- def prettyMap[K, V](m: Map[K, V]): String = {
688
- // Helper function to recursively build the string representation of the tree
689
- def go(t: Map[K, V], prefix: String, isTail: Bool): String = {
690
- t match {
691
- case Tip() => ""
692
- case Bin(_, k, v, l, r) =>
693
- val pair = k.genericShow ++ " → " ++ v.genericShow
694
- val currentLine = prefix ++ (if (isTail) "└── " else "├── ") ++ pair ++ "\n"
689
+ def prettyMap[K, V](m: Map[K, V]): String = {
690
+ // Helper function to recursively build the string representation of the tree
691
+ def go(t: Map[K, V], prefix: String, isTail: Bool): String = {
692
+ t match {
693
+ case Tip() => ""
694
+ case Bin(_, k, v, l, r) =>
695
+ val pair = k.genericShow ++ " → " ++ v.genericShow
696
+ val currentLine = prefix ++ (if (isTail) "└── " else "├── ") ++ pair ++ "\n"
695
697
696
- val newPrefix = prefix ++ (if (isTail) " " else "│ ")
697
- val leftStr = go(l, newPrefix, false)
698
- val rightStr = go(r, newPrefix, true)
698
+ val newPrefix = prefix ++ (if (isTail) " " else "│ ")
699
+ val leftStr = go(l, newPrefix, false)
700
+ val rightStr = go(r, newPrefix, true)
699
701
700
- currentLine ++ leftStr ++ rightStr
702
+ currentLine ++ leftStr ++ rightStr
703
+ }
701
704
}
702
- }
703
705
704
- // Start the recursion with the initial map, an empty prefix, and true for the root being the tail
705
- go(m, "", true)
706
- }
706
+ // Start the recursion with the initial map, an empty prefix, and true for the root being the tail
707
+ go(m, "", true)
708
+ }
707
709
708
- def prettyPairs[K, V](list: List[(K, V)]): String = {
709
- val res: String =
710
- list.map { case (k, v) => k.genericShow ++ " → " ++ v.genericShow }
711
- .join(", ")
710
+ def prettyPairs[K, V](list: List[(K, V)]): String = {
711
+ val res: String =
712
+ list.map { case (k, v) => k.genericShow ++ " → " ++ v.genericShow }
713
+ .join(", ")
712
714
713
- "[" ++ res ++ "]"
714
- }
715
+ "[" ++ res ++ "]"
716
+ }
0 commit comments