Judge Route Circle --判断圆路线

Posted im.lhc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Judge Route Circle --判断圆路线相关的知识,希望对你有一定的参考价值。

Initially, there is a Robot at position (0, 0). Given a sequence of its moves, judge if this robot makes a circle, which means it moves back to the original place.

The move sequence is represented by a string. And each move is represent by a character. The valid robot moves are R (Right), L(Left), U (Up) and D (down). The output should be true or false representing whether the robot makes a circle.

Example 1:

Input: "UD"
Output: true

 

Example 2:

Input: "LL"
Output: false

思路:
    1.这是一个模拟横纵坐标移动的问题,向左移动x--,向右x++,向上y++,向下y--,最后判断 x == 0 && y == 0即可。
    2.直接判断‘L‘,‘R‘,‘U‘,‘D‘出现的次数是否相等
实现代码:
class Solution {
public:
    bool judgeCircle(string moves) {
        int x=0,y=0;
          for (int i = 0; i < moves.length(); i++){  
            if (moves[i] == L) x--;  
            else if (moves[i] == R) x++;  
            else if (moves[i] == U) y++;  
            else y--;  
        }  
        return x == 0 && y == 0;  
    }
};

 

以上是关于Judge Route Circle --判断圆路线的主要内容,如果未能解决你的问题,请参考以下文章

657. Judge Route Circle

657. Judge Route Circle

657. Judge Route Circle

Judge Route Circle

657. Judge Route Circle

[LeetCode] Judge Route Circle