Amazon OA

  1. 2SumUniquePairs
import java.util.HashMap;
import java.util.Map;

public class twoSumUnique {
    public static int uniquepairs(int[] nums, int target) {
        if (nums == null || nums.length == 0) {
            return 0;
        }
        
        int res = 0;
        Map<Integer, Boolean> mapForPrev = new HashMap<>();
        for (int i = 0; i < nums.length; i++) {
            int diff = target - nums[i];
            if (mapForPrev.containsKey(diff)) {
                if (!mapForPrev.get(diff)) {
                    mapForPrev.put(diff, true);
                    res++;
                }
                mapForPrev.put(nums[i], true);
            } else {
                mapForPrev.put(nums[i], false);
            }
        }
        return res;
    }
    
    public static void main(String[] args) {
        int[] nums1 = { 1, 1, 2, 45, 46, 46 };
        int target1 = 47;
        System.out.println(uniquepairs(nums1, target1));
        System.out.println("-------------------------------");
        int[] nums2 = {1, 5, 1, 5};
        int target2 = 6;
        System.out.println(uniquepairs(nums2, target2));
    }
}
  1. SubTree
public class subtree {    
    public boolean isSubtree(TreeNode s, TreeNode t){
        return isSubtree(s, t, false);
    }
    
    public boolean isSubtree(TreeNode s, TreeNode t, boolean flag) {
        if (s == null || t == null) {
            if (s == null && t == null) {
                return true;
            } else {
                return false;
            }      
        }

        if (s.val != t.val && flag){
            return false;
        }
        
        if (s.val == t.val) {
            flag = true;
            if (isSubtree(s.left, t.left, true) && isSubtree(s.right, t.right, true)) {
                 return true;
            }
        }        
        return isSubtree(s.left, t, false) || isSubtree(s.right, t, false);        
    }
    
}

class TreeNode {
     int val;
     TreeNode left;
     TreeNode right;
     TreeNode(int x) { val = x; }
}
  1. Search 2D
public class search2D {
    public boolean searchMatrix(int[][] matrix, int target) {
        if (matrix == null || matrix.length == 0) {
            return false;
        }
        
        int row = matrix.length, col = matrix[0].length;
        int i = 0, j = col - 1;
        while (i < row && j >= 0) {
            if (matrix[i][j] == target) {
                return true;
            } else if (matrix[i][j] < target) {
                i++;
            } else if (matrix[i][j] > target) {
                j--;
            }
        }
        return false;
    }
}
  1. Spiral Matrix
public class spiralMatrix {
    public int[][] generateMatrix(int n) {
        int[][] res = new int[n][n];
        if (n <= 0) {
            return res;
        }
        int rowBegin = 0, rowEnd = n - 1;
        int colBegin = 0, colEnd = n - 1;
        int num = 1;
        while (rowBegin <= rowEnd && colBegin <= colEnd) {
            for (int j = colBegin; j <= colEnd; j++) {
                res[rowBegin][j] = num++;
            }
            rowBegin++;
            
            for (int i = rowBegin; i <= rowEnd; i++) {
                res[i][colEnd] = num++;
            }
            colEnd--;
            
            for (int k = colEnd; k >= colBegin; k--) {
                res[rowEnd][k] = num++;
            }
            rowEnd--;
            
            for (int m = rowEnd; m >= rowBegin; m--) {
                res[m][colBegin] = num++;
            }
            colBegin++;
        }
        return res;
    }
}
  1. Merge 2 sorted Linked List
//import java.util.LinkedList;

public class mergeTwoLists {
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        if (l1 == null) {
            return l2;
        } else if (l2 == null) {
            return l1;
        }
        ListNode dummy = new ListNode(0);
        ListNode prev = dummy;
        while (l1 != null && l2 != null) {
            if (l1.val <= l2.val) {
                prev.next = l1;
                l1 = l1.next;
            } else {
                prev.next = l2;
                l2 = l2.next;
            }
            prev = prev.next;
        }
        if (l1 != null) {
            prev.next = l1;
        }
        if (l2 != null) {
            prev.next = l2;
        }
        return dummy.next;
    }
}

class ListNode {
    int val;
    ListNode next;
    ListNode(int x) { val = x; }
}
  1. Copy Random Pointer
import java.util.*;

class Node {
    public int val;
    public Node next;
    public Node random;

    public Node() {}

    public Node(int _val,Node _next,Node _random) {
        val = _val;
        next = _next;
        random = _random;
    }
};

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

推荐阅读更多精彩内容

  • With attribution to Top 10 Algorithms for Coding Intervie...
    前端混合开发阅读 388评论 0 0
  • Single Linked List 相比较另一个基本的数据结构array,linked list有几个优势:尺寸...
    dol_re_mi阅读 8,166评论 0 3
  • 每天两点一线的生活,难得的休息日,看着乱糟糟脏兮兮的家,再卖力收拾好。一天就过去一多半。欣赏不到外面的美景,真是憋...
    冰水珊瑚阅读 240评论 0 0
  • 人生短暂而又漫长,凡事看开点,每天快乐点,学会奋斗与享受,学会包容与理解,学会放弃和独立,学会坚持和努力……每天都...
    spleeyhead阅读 89评论 0 1
  • 我是一只在南国桂树上织网的蜘蛛。 我从心底吐丝,支起一张漫天盖地的网。我的热情,是三月里火红的石榴花;我的等待,是...
    寂花苲花阅读 180评论 0 2