LeetCode 457. Circular Array Loop

原题链接在这里:https://leetcode.com/problems/circular-array-loop/

题目:

You are given a circular array nums of positive and negative integers. If a number k at an index is positive, then move forward k steps. Conversely, if it's negative (-k), move backward k steps. Since the array is circular, you may assume that the last element's next element is the first element, and the first element's previous element is the last element.

Determine if there is a loop (or a cycle) in nums. A cycle must start and end at the same index and the cycle's length > 1. Furthermore, movements in a cycle must all follow a single direction. In other words, a cycle must not consist of both forward and backward movements.

Example 1:

Input: [2,-1,1,2,2]
Output: true
Explanation: There is a cycle, from index 0 -> 2 -> 3 -> 0. The cycle's length is 3.

Example 2:

Input: [-1,2]
Output: false
Explanation: The movement from index 1 -> 1 -> 1 ... is not a cycle, because the cycle's length is 1. By definition the cycle's length must be greater than 1.

Example 3:

Input: [-2,1,-1,-2,-2]
Output: false
Explanation: The movement from index 1 -> 2 -> 1 -> ... is not a cycle, because movement from index 1 -> 2 is a forward movement, but movement from index 2 -> 1 is a backward movement. All movements in a cycle must follow a single direction.

Note:

  1. -1000 ≤ nums[i] ≤ 1000
  2. nums[i] ≠ 0
  3. 1 ≤ nums.length ≤ 5000

 

Follow up:

Could you solve it in O(n) time complexity and O(1) extra space complexity?

题解:

Use walker and runner pointers to check if there is a loop.

Every time, pointer move as i + nums[i]. If it is positive, return (i + nums[i])/nums.length. If it is negative, return (i+nums[i])/nums.length + nums.length.

In order to maintain the same direction, make sure each shifted index are all positive or all negative.

When walker and runner meets, then there is a loop. 

But in case to avoid single element in the loop, check if next move is still here.

Last, if there is no loop for current routine, then mark all nums on this routine as 0, then there would not be duplicate calcuation on these numbers.

Time Complexity: O(n). n = nums.length.

Space: O(1).

AC Java:

 1 class Solution {
 2     public boolean circularArrayLoop(int[] nums) {
 3         if(nums == null || nums.length < 2){
 4             return false;
 5         }
 6         
 7         for(int i = 0; i<nums.length; i++){
 8             if(nums[i] == 0){
 9                 continue;
10             }
11             
12             int walker = i;
13             int runner = i;
14             while(nums[i]*nums[shift(runner, nums)]>0 && nums[i]*nums[shift(shift(runner, nums), nums)]>0){
15                 walker = shift(walker, nums);
16                 runner = shift(shift(runner, nums), nums);
17                 // If there is a loop, walker and runner will meet
18                 if(walker == runner){
19                     // If there is only one element in loop, break while
20                     if(walker == shift(walker, nums)){
21                         break;
22                     }
23                     
24                     return true;
25                 }
26             }
27             
28             // When there is no loop with current routine,
29             // Mark value as 0, then there would not be duplicate calculation
30             int ind = i;
31             int val = nums[ind];
32             while(val*nums[ind]>0){
33                 int nextInd = shift(ind, nums);
34                 nums[ind] = 0;
35                 ind = nextInd;
36             }
37         }
38         
39         return false;
40     }
41     
42     private int shift(int i, int [] nums){
43         int n = nums.length;
44         return i + nums[i] >= 0 ? (i + nums[i]) % n : (i + nums[i]) % n + n;
45     }
46 }

类似Linked List Cycle.

转载于:https://www.cnblogs.com/Dylan-Java-NYC/p/11423136.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值