双指针主要用于遍历数组,两个指针指向不同的元素,从而协同完成任务。

1. 有序数组的 Two Sum


  1. Two Sum II - Input array is sorted (Easy)

Leetcode / 力扣

  1. Input: numbers={2, 7, 11, 15}, target=9
  2. Output: index1=1, index2=2

题目描述:在有序数组中找出两个数,使它们的和为 target。

使用双指针,一个指针指向值较小的元素,一个指针指向值较大的元素。指向较小元素的指针从头向尾遍历,指向较大元素的指针从尾向头遍历。

  • 如果两个指针指向元素的和 sum == target,那么得到要求的结果;
  • 如果 sum > target,移动较大的元素,使 sum 变小一些;
  • 如果 sum < target,移动较小的元素,使 sum 变大一些。

数组中的元素最多遍历一次,时间复杂度为 O(N)。只使用了两个额外变量,空间复杂度为 O(1)。

Leetcode 题解 - 双指针 - 图1

  1. public int[] twoSum(int[] numbers, int target) {
  2. if (numbers == null) return null;
  3. int i = 0, j = numbers.length - 1;
  4. while (i < j) {
  5. int sum = numbers[i] + numbers[j];
  6. if (sum == target) {
  7. return new int[]{i + 1, j + 1};
  8. } else if (sum < target) {
  9. i++;
  10. } else {
  11. j--;
  12. }
  13. }
  14. return null;
  15. }

2. 两数平方和


  1. Sum of Square Numbers (Easy)

Leetcode / 力扣

  1. Input: 5
  2. Output: True
  3. Explanation: 1 * 1 + 2 * 2 = 5

题目描述:判断一个非负整数是否为两个整数的平方和。

可以看成是在元素为 0~target 的有序数组中查找两个数,使得这两个数的平方和为 target,如果能找到,则返回 true,表示 target 是两个整数的平方和。

本题和 167. Two Sum II - Input array is sorted 类似,只有一个明显区别:一个是和为 target,一个是平方和为 target。本题同样可以使用双指针得到两个数,使其平方和为 target。

本题的关键是右指针的初始化,实现剪枝,从而降低时间复杂度。设右指针为 x,左指针固定为 0,为了使 0 + x 的值尽可能接近 target,我们可以将 x 取为 sqrt(target)。

因为最多只需要遍历一次 0~sqrt(target),所以时间复杂度为 O(sqrt(target))。又因为只使用了两个额外的变量,因此空间复杂度为 O(1)。

  1. public boolean judgeSquareSum(int target) {
  2. if (target < 0) return false;
  3. int i = 0, j = (int) Math.sqrt(target);
  4. while (i <= j) {
  5. int powSum = i * i + j * j;
  6. if (powSum == target) {
  7. return true;
  8. } else if (powSum > target) {
  9. j--;
  10. } else {
  11. i++;
  12. }
  13. }
  14. return false;
  15. }

3. 反转字符串中的元音字符


  1. Reverse Vowels of a String (Easy)

Leetcode / 力扣

  1. Given s = "leetcode", return "leotcede".

Leetcode 题解 - 双指针 - 图2

使用双指针,一个指针从头向尾遍历,一个指针从尾到头遍历,当两个指针都遍历到元音字符时,交换这两个元音字符。

为了快速判断一个字符是不是元音字符,我们将全部元音字符添加到集合 HashSet 中,从而以 O(1) 的时间复杂度进行该操作。

  • 时间复杂度为 O(N):只需要遍历所有元素一次
  • 空间复杂度 O(1):只需要使用两个额外变量

Leetcode 题解 - 双指针 - 图3

  1. private final static HashSet<Character> vowels = new HashSet<>(
  2. Arrays.asList('a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U'));
  3. public String reverseVowels(String s) {
  4. if (s == null) return null;
  5. int i = 0, j = s.length() - 1;
  6. char[] result = new char[s.length()];
  7. while (i <= j) {
  8. char ci = s.charAt(i);
  9. char cj = s.charAt(j);
  10. if (!vowels.contains(ci)) {
  11. result[i++] = ci;
  12. } else if (!vowels.contains(cj)) {
  13. result[j--] = cj;
  14. } else {
  15. result[i++] = cj;
  16. result[j--] = ci;
  17. }
  18. }
  19. return new String(result);
  20. }

4. 回文字符串


  1. Valid Palindrome II (Easy)

Leetcode / 力扣

  1. Input: "abca"
  2. Output: True
  3. Explanation: You could delete the character 'c'.

题目描述:可以删除一个字符,判断是否能构成回文字符串。

所谓的回文字符串,是指具有左右对称特点的字符串,例如 “abcba” 就是一个回文字符串。

使用双指针可以很容易判断一个字符串是否是回文字符串:令一个指针从左到右遍历,一个指针从右到左遍历,这两个指针同时移动一个位置,每次都判断两个指针指向的字符是否相同,如果都相同,字符串才是具有左右对称性质的回文字符串。

Leetcode 题解 - 双指针 - 图4

本题的关键是处理删除一个字符。在使用双指针遍历字符串时,如果出现两个指针指向的字符不相等的情况,我们就试着删除一个字符,再判断删除完之后的字符串是否是回文字符串。

在判断是否为回文字符串时,我们不需要判断整个字符串,因为左指针左边和右指针右边的字符之前已经判断过具有对称性质,所以只需要判断中间的子字符串即可。

在试着删除字符时,我们既可以删除左指针指向的字符,也可以删除右指针指向的字符。

Leetcode 题解 - 双指针 - 图5

  1. public boolean validPalindrome(String s) {
  2. for (int i = 0, j = s.length() - 1; i < j; i++, j--) {
  3. if (s.charAt(i) != s.charAt(j)) {
  4. return isPalindrome(s, i, j - 1) || isPalindrome(s, i + 1, j);
  5. }
  6. }
  7. return true;
  8. }
  9. private boolean isPalindrome(String s, int i, int j) {
  10. while (i < j) {
  11. if (s.charAt(i++) != s.charAt(j--)) {
  12. return false;
  13. }
  14. }
  15. return true;
  16. }

5. 归并两个有序数组


  1. Merge Sorted Array (Easy)

Leetcode / 力扣

  1. Input:
  2. nums1 = [1,2,3,0,0,0], m = 3
  3. nums2 = [2,5,6], n = 3
  4. Output: [1,2,2,3,5,6]

题目描述:把归并结果存到第一个数组上。

需要从尾开始遍历,否则在 nums1 上归并得到的值会覆盖还未进行归并比较的值。

  1. public void merge(int[] nums1, int m, int[] nums2, int n) {
  2. int index1 = m - 1, index2 = n - 1;
  3. int indexMerge = m + n - 1;
  4. while (index2 >= 0) {
  5. if (index1 < 0) {
  6. nums1[indexMerge--] = nums2[index2--];
  7. } else if (index2 < 0) {
  8. nums1[indexMerge--] = nums1[index1--];
  9. } else if (nums1[index1] > nums2[index2]) {
  10. nums1[indexMerge--] = nums1[index1--];
  11. } else {
  12. nums1[indexMerge--] = nums2[index2--];
  13. }
  14. }
  15. }

6. 判断链表是否存在环


  1. Linked List Cycle (Easy)

Leetcode / 力扣

使用双指针,一个指针每次移动一个节点,一个指针每次移动两个节点,如果存在环,那么这两个指针一定会相遇。

  1. public boolean hasCycle(ListNode head) {
  2. if (head == null) {
  3. return false;
  4. }
  5. ListNode l1 = head, l2 = head.next;
  6. while (l1 != null && l2 != null && l2.next != null) {
  7. if (l1 == l2) {
  8. return true;
  9. }
  10. l1 = l1.next;
  11. l2 = l2.next.next;
  12. }
  13. return false;
  14. }

7. 最长子序列


  1. Longest Word in Dictionary through Deleting (Medium)

Leetcode / 力扣

  1. Input:
  2. s = "abpcplea", d = ["ale","apple","monkey","plea"]
  3. Output:
  4. "apple"

题目描述:删除 s 中的一些字符,使得它构成字符串列表 d 中的一个字符串,找出能构成的最长字符串。如果有多个相同长度的结果,返回字典序的最小字符串。

通过删除字符串 s 中的一个字符能得到字符串 t,可以认为 t 是 s 的子序列,我们可以使用双指针来判断一个字符串是否为另一个字符串的子序列。

  1. public String findLongestWord(String s, List<String> d) {
  2. String longestWord = "";
  3. for (String target : d) {
  4. int l1 = longestWord.length(), l2 = target.length();
  5. if (l1 > l2 || (l1 == l2 && longestWord.compareTo(target) < 0)) {
  6. continue;
  7. }
  8. if (isSubstr(s, target)) {
  9. longestWord = target;
  10. }
  11. }
  12. return longestWord;
  13. }
  14. private boolean isSubstr(String s, String target) {
  15. int i = 0, j = 0;
  16. while (i < s.length() && j < target.length()) {
  17. if (s.charAt(i) == target.charAt(j)) {
  18. j++;
  19. }
  20. i++;
  21. }
  22. return j == target.length();
  23. }