zoukankan      html  css  js  c++  java
  • LeetCode

    Gray Code

    2013.12.27

    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.

    Solution:

      I remember first hearing the term "Gray code" in discrete mathematics class. It's a special kind of signaling, with every pair of adjacent codes having only one bit of variation. The Taichi Bagua in ancient Chinese culture is an interesting example of Gray code.

      To generate a set of valid gray code, you can follow the process below:

        1. You have an empty signal at first, [""]

        2. You add 0 and 1 to it, ["0", "1"]

        3. You put them together, with the second half in reversed order: ["0", "1", "1", "0"]

        4. Add 0 to the first half, and 1 to the second half: ["00", "01", "11", "10"]

      Guess you've already figured it out. If A[n] is a valid Gray code sequence of size n, it would stil be valid sequence if reversed. You just make sure you can put A[n] and inv(A[n]) together to create an A[n + 1]. That's how you build a Gray code sequence of any size.

      Time complexity is O(2^n), as there're 2^n Gray codes in length n. Space compelxity is O(2^n), as each iteration needs space to hold the intermediate result.

    Accepted code:

     1 // 1CE 2WA 1AC, you fool..
     2 // Too careless!!!
     3 class Solution {
     4 public:
     5     vector<int> grayCode(int n) {
     6         // IMPORTANT: Please reset any member data you declared, as
     7         // the same Solution instance will be reused for each test case.
     8         vector<int> res1, res2;
     9         res1.clear();
    10         res2.clear();
    11         
    12         if(n < 0){
    13             return res1;
    14         }
    15         
    16         int nn = 1 << n;
    17         int i, j;
    18         
    19         res1.push_back(0);
    20         for(i = 1; i <= n; ++i){
    21             nn = 1 << (i - 1);
    22             for(j = 0; j < nn; ++j){
    23                 res2.push_back(res1[j]);
    24             }
    25             for(j = nn - 1; j >= 0; --j){
    26                 res2.push_back(nn + res1[j]);
    27             }
    28             res1 = res2;
    29             res2.clear();
    30         }
    31         
    32         return res1;
    33     }
    34 };
  • 相关阅读:
    jquery ajax 后台响应成功,返回正确json但不执行success方法,执行error的问题
    bootstrap轮播组件,大屏幕图片居中效果
    mouseover和mouseout事件在鼠标经过子元素时也会触发
    vertical-align的深入学习
    小技巧
    css字体大小设置em与rem的区别
    子元素的margin-top影响父元素原因和解决办法
    JavaScript随机打乱数组
    JavaScript 获取当月天数
    javaScript 的option触发事件
  • 原文地址:https://www.cnblogs.com/zhuli19901106/p/3493414.html
Copyright © 2011-2022 走看看