2018-07-02

Q1: 蓄水池算法pick 1
Q2: reverse linked list
Q3: reverse linked list per k nodes
Q4: BST preOrder iteration
Q5: BST inOrder iteration
Q6: BST postOrder iteration
Q7: suffle array
Q8: move negative to the end
Q9: maximum on binary tree
Q10: first Occurency bianry search

//
public class Solution {
  public int firstOccur(int[] array, int target) {
    // Write your solution here
    if (array == null || array.length == 0) {//== =
    return -1;
    }
    int i = 0;
    int j = array.length - 1;
    
    while (i < j){
        int m = (j - i) / 2 + i;
      if (array[m] == target) {
        j = m;
      } else if (array[m] > target) {
        j = m - 1;
      } else {
        i = m + 1;
      }
    }
    if (j >= 0 && array[j] == target) {
        return  j;
    }
    return -1;

  }
}

Q:
public ListNode getRandom(ListNode root) {
  int counter = 0;
  ListNode result = root;
  while (root != null) {
    if (Random.nextInt(counter) == 0) {
      result = root;
    }
    counter++;
    root = root.next;
  }
  return result;
}

//public class Solution {
   public List<Integer> inOrder(TreeNode root) {
     List<Integer> result = new ArrayList<>();
   Deque<TreeNode> stack = new ArrayDeque<>();

   while (root != null || !stack.isEmpty()) {
     if (root != null) {
       stack.offerLast(root);
       root = root.left;
     } else {
       root = stack.pollLast();
       result.add(root.key);
     root = root.right;
     }
    }
     return result;
}
}
//
//
public class Solution {
  public List<Integer> preOrder(TreeNode root) { 
     List<Integer> result = new ArrayList<>();
    Deque<TreeNode> stack = new ArrayDeque<>();
     while (root != null | ! stack.isEmpty()) {
       while (root != null) {
        result.add(root.key);
        stack.offerLast(root);
       root = root.left;
       }
         if (!stack.isEmpty()) {
         root = stack.pollLast();
           root = root.right;
         }
        
     }
    return result;
  }
}

//Q2
public void moveNeg(int[] arr) {
  //TODO: Sanity check
  int n = arr.length;
  int slow = 0;
  int fast = 0;
  while (fast < n) {
    if (arr[fast] > 0){
      swap(arr, fast++, slow++);
    } else {
      fast++;
    }
  }
  return;
} 
//Q3
public class MaxTree{
  pubblic int calMax(TreeNode root) {
    int[] cur = helper(root);
    return Math.max(cur[0], cur[1]);
  }
  
  private int[] helper(TreeNode root) {
    //max val int[0]: cur root chosen
    //max val int[1]: cur root not chosen
    if (root == null) {
      return new int[2] {0, 0};
    }
    
    int[] left = helper(root.left);
    int[] right = helper(root.right);
    
    int[] cur = new int[2];
    cur[0] = root.val + Math.max(left[1] + right[1]);
    cur[1] = Math.max(left[0], left[1]) + Math.max(right[0] + right[1]);
  }
}
//Q4
public class shuffleCard{
  public List<List<Integer>> shuffle(int n) {
    List<List<Integer>> results = new ArrayList<>();
    Set<Integer> used = new HashSet<>();
    int[] oneSol = new int[2 * n];
    dfs(0, n, used, oneSol, results);
  }
  private void dfs (int level, int n, Set<Integer> used, int[] oneSol, List<List<Integer>> results) {
    if (level == 2 * n) {
      if (used.size() == n) {
        results.add(new ArrayList<>(oneSol));
      }
      return;
    }
    if (oneSol[level] == 0) {
      for (int i = 1; i <= n; i++) {
        if (!used.contains(i) && level + i + 1 < n * 2) {
          oneSol[level] = i;
          oneSol[level + i + 1] = i;
          used.add(i);
          dfs(level + 1, n, used, oneSol, results);
          oneSol[level] = 0;
          oneSol[level + i + 1] = 0;
          used.remove(i);
        }
    }
    }
    
  }
}
//Q5
public class Solution {
   public List<Integer> postOrder(TreeNode root) {
    TreeNode cur = root;
    TreeNode pre = null;
    Deque<TreeNode> stack = new ArrayDeque<>();
    List<Integer> result = new ArrayList<>();
    while (cur != null || !stack.isEmpty()) {
      if (cur != null) {
        stack.offerLast(cur);
        pre = cur;
        cur = cur.left;
      } else {
        cur = stack.peekLast();
        if (cur.right != null && pre != cur.right) {
          //why check right != null? 希望pre全程不为null
           pre = cur;
           cur = cur.right;  
        } else { //pre == cur.right
           
          cur = stack.pollLast();
          result.add(cur.key);
          pre = cur;
          cur = null; 
        }
       
      }
    }
    return result;
  }
}



©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容

  • 背景 一年多以前我在知乎上答了有关LeetCode的问题, 分享了一些自己做题目的经验。 张土汪:刷leetcod...
    土汪阅读 12,723评论 0 33
  • 声音是频率,音乐是频率,宇宙 ——大无外,小无内,充满了能量和信息,宇宙、银河系、太阳系、地球、人、夸克都是有形状...
    大威德金刚阅读 277评论 0 0
  • 1.数组 1.1 数组构造1.直接创建的方式 --> var arr = [1,2,3];2.构造函数方式 -->...
    无聊的凡人阅读 269评论 0 0
  • 题量有点多,建议Ctrl + F题号或题目哦~ 二叉树的遍历(前序遍历,中序遍历,后序遍历)[144] Binar...
    野狗子嗷嗷嗷阅读 9,079评论 2 37
  • 我喜欢的你, 今天你身体好吗? 还想以前一样常喝酒熬夜吗? 我喜欢的你, 今天你心情好吗? 还想过往一样爱唱歌跳舞...
    秋淡阅读 125评论 0 0