We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0059489 commit c6f8963Copy full SHA for c6f8963
ch17/01_Generic_Algorithms.md
@@ -76,7 +76,7 @@ int lastIndexOfSubList(List<?> source, List<?> target) // 找到与目标匹配
76
骤才能在长度为 `2 m` 的列表中找到搜索值,并且长度为n的列表的时间复杂度为 `O(log n)`。
77
78
`indexOfSubList` 和 `lastIndexOfSubList` 方法的操作不需要排序列表。他们的签名允许源列表和目标列表包含任何类型的元素(请记住,这两个通配符可能代表
79
-两种不同的类型)。这些签名背后的设计决策与 `Collection` 方法 `containsAll`,`retainAll`和removeAll背后的设计决策相同(参见第 `2.6` 节)。
+两种不同的类型)。这些签名背后的设计决策与 `Collection` 方法 `containsAll`,`retainAll`和 `removeAll` 背后的设计决策相同(参见第 `2.6` 节)。
80
81
《《《 [下一节](02_Collection_Factories.md) <br/>
82
《《《 [返回首页](../README.md)
0 commit comments