240 发简信
IP属地:宾夕法尼亚州
  • 15826 hw1

    (2) LINEAR HASHING (a) m = 11,22,44. (b) 2 (c) h1(x) = x mod 88h2(x) = x...

  • [127]word ladder

    以下使用双向bfs解法。利用two queue, two hashset. 同时采取check两个set的size的方式选择选取哪一边进行bfs。

  • [snap]frog jump 2D

    instant 2D版frog jump,规定跳跃方向是右或下方。 基本的思路就是依次动态规划,没有什么不同。只是需要两个map来对每个石头进行...

  • [snap] find next neighbor on binary tree

    给一个binary tree,每一个node含有parent指向parent,给定一个node,找出他右侧的node。 instant 用了df...

  • [snap]two sum on tree

    two node sum to a target on a binary search tree. instant I think there ...