码迷,mamicode.com
首页 > 其他好文 > 详细

Judge Route Circle --判断圆路线

时间:2017-10-28 12:38:22      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:else   col   public   模拟   一个   判断   turn   ret   represent   

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 --判断圆路线

标签:else   col   public   模拟   一个   判断   turn   ret   represent   

原文地址:http://www.cnblogs.com/linwx/p/7746101.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!