LeetCode 63 Gray Code

The gray code is a binary numeral system where two successive values differ in only one bit.
Given a non-negative integer n representing the total number of bits in the code, print the sequence of gray code. A gray code sequence must begin with 0.
For example, given n = 2, return [0,1,3,2]. Its gray code sequence is:
00 -> 0
01 -> 1
11 -> 3
10 -> 2
Note:
For a given n, a gray code sequence is not uniquely defined.
For example, [0,2,3,1] is also a valid gray code sequence according to the above definition.
For now, the judge is able to judge based on one instance of gray code sequence. Sorry about that.
분석:
처음에 생각이 없으면 가장 간단한 상황부터 고려한다.
1위:0,1
2위:00,01,11,10
3위: 00000101010101110110100
법칙은 한 명씩 많으면 원래의 기초 위에서 높은 자리를 더하면 0이고 높은 자리가 1인 두 가지 상황을 더하면 된다는 것이다.
이 자체는 순서와 상관없지만, leetcode 서열화의 제한으로 높은 위치를 추가할 때는 원래 결과에서 뒤로 옮겨야 한다.
4
public class Solution {
    public List<Integer> grayCode(int n) {
        List<Integer> result = new ArrayList<Integer>();
        if(n==0){
            result.add(0);
            return result;
        }
        List<Integer> tmp = grayCode(n-1);
        int high = 1 << (n-1);
        result = new ArrayList<Integer>(tmp);
        for(int i=tmp.size()-1; i>=0; i--)
            result.add(high + tmp.get(i));
        
        return result;
    }
}
이 문제는 나에게 생각이 없는 것은 가장 간단한 상황에서 착수하는 것을 가르쳐 주었다.

좋은 웹페이지 즐겨찾기