Skip to content

Commit c6f8963

Browse files
authored
Update 01_Generic_Algorithms.md
1 parent 0059489 commit c6f8963

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ch17/01_Generic_Algorithms.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ int lastIndexOfSubList(List<?> source, List<?> target) // 找到与目标匹配
7676
骤才能在长度为 `2 m` 的列表中找到搜索值,并且长度为n的列表的时间复杂度为 `O(log n)`
7777

7878
`indexOfSubList``lastIndexOfSubList` 方法的操作不需要排序列表。他们的签名允许源列表和目标列表包含任何类型的元素(请记住,这两个通配符可能代表
79-
两种不同的类型)。这些签名背后的设计决策与 `Collection` 方法 `containsAll``retainAll`和removeAll背后的设计决策相同(参见第 `2.6` 节)。
79+
两种不同的类型)。这些签名背后的设计决策与 `Collection` 方法 `containsAll``retainAll``removeAll` 背后的设计决策相同(参见第 `2.6` 节)。
8080

8181
《《《 [下一节](02_Collection_Factories.md) <br/>
8282
《《《 [返回首页](../README.md)

0 commit comments

Comments
 (0)