zoukankan      html  css  js  c++  java
  • 251. Flatten 2D Vector

    Implement an iterator to flatten a 2d vector.

    For example,
    Given 2d vector =

    [
      [1,2],
      [3],
      [4,5,6]
    ]
    

    By calling next repeatedly until hasNext returns false, the order of elements returned by next should be: [1,2,3,4,5,6].

    Hint:

    1. How many variables do you need to keep track?
    2. Two variables is all you need. Try with x and y.
    3. Beware of empty rows. It could be the first few rows.
    4. To write correct code, think about the invariant to maintain. What is it?
    5. The invariant is x and y must always point to a valid point in the 2d vector. Should you maintain your invariant ahead of time or right when you need it?
    6. Not sure? Think about how you would implement hasNext(). Which is more complex?
    7. Common logic in two different places should be refactored into a common method.
    public class Vector2D {
        public IList<IList<int>> v {get;set;}
        private int verticalCount {get;set;}
        private int index {get;set;}
        public Vector2D(IList<IList<int>> vec2d) {
            v= vec2d;
            verticalCount = 0;
            index = 0;
        }
    
        public bool HasNext() {
            if(verticalCount >= v.Count()) return false;
            if(verticalCount == v.Count()-1 && index >= v[verticalCount].Count()) return false;
            if(index >=  v[verticalCount].Count())
            {
                verticalCount++;
                while(verticalCount < v.Count() &&  v[verticalCount].Count() == 0)
                {
                    verticalCount++;
                }
                if(verticalCount ==  v.Count()) return false;
                else 
                {
                    index = 0;
                    return true;
                }
               
            }
            return true;
        }
    
        public int Next() {
            return v[verticalCount][index++];
        }
    }
    
    /**
     * Your Vector2D will be called like this:
     * Vector2D i = new Vector2D(vec2d);
     * while (i.HasNext()) v[f()] = i.Next();
     */
  • 相关阅读:
    CentOS系统更换软件安装源aliyun的
    判断手机电脑微信 js
    MFC HTTP
    阿里云 镜像 源 debian
    debian root 可以远程登陆
    java-dispose方法
    深入理解JAVA序列化
    Junit单元测试--01
    算法期末考试
    矩阵连乘 动态规划
  • 原文地址:https://www.cnblogs.com/renyualbert/p/5875631.html
Copyright © 2011-2022 走看看