面试总结 算法02

  //乱序
    public static void luan(int[] arr){
          for(int i=0;i<arr.length;i++){
              int random = (int)(Math.random()*(arr.length-i-1));
              int temp = arr[arr.length -i-1];
              arr[arr.length -i-1] = arr[random];
              arr[random] = temp;
          }
        for (int i : arr) {
            System.out.println(i);
        }

    }
    //View Group个数
    public int count1(View view) {
        int count = 0;
        if (view == null) {
            return 0;
        }
        if (view instanceof ViewGroup) {
            count++;
            ViewGroup group = (ViewGroup) view;
            for (int i = 0; i < group.getChildCount(); i++) {
                View child = group.getChildAt(i);
                if (child instanceof ViewGroup) {
                    count += count1(child);
                } else {
                    count++;
                }
            }
        }
        return count;
    }
   //View Group个数
    public int count2(View view) {
        int count = 0;
        if (null == view) {
            return 0;
        }
        if (view instanceof ViewGroup) {
            ViewGroup group = (ViewGroup) view;
            LinkedList<ViewGroup> quene = new LinkedList<>();
            quene.add(group);
            while (!quene.isEmpty()) {
                ViewGroup viewGroup = quene.removeFirst();
                count++;
                for (int i = 0; i < viewGroup.getChildCount(); i++) {
                    View child = viewGroup.getChildAt(i);
                    if (child instanceof ViewGroup) {
                        quene.add((ViewGroup) child);
                    } else {
                        count++;
                    }
                }
            }
        }
        return count;
    }

    //前序遍历
    public void recursivePreOrder(TreeNode p) {
        if (p == null) {
            return;
        }
        System.out.println(p.val);
        recursivePreOrder(p.left);
        recursivePreOrder(p.right);
    }
  // 前序

    public void recursivePreOrder1(TreeNode p) {
        if (p == null) {
            return;
        }
        Stack<TreeNode> treeNodes = new Stack<>();
        treeNodes.push(p);
        while (!treeNodes.empty()) {
            TreeNode node = treeNodes.pop();
            System.out.println(node.val);
            if (p.right != null) {
                treeNodes.push(p.right);
            }
            if (p.left != null) {
                treeNodes.push(p.left);
            }
        }


    }
   //中序
    public void mid(TreeNode p) {
        if (p == null) {
            return;
        }
        Stack<TreeNode> stacks = new Stack<>();
        while (!stacks.empty() || p != null) {
            while (p != null) {
                stacks.push(p);
                p = p.left;
            }
            p = stacks.pop();
            System.out.println(p.val);
            p = p.right;

        }

    }
    //后序
    public void after(TreeNode p) {
        if (p == null) {
            return;
        }
        Stack<TreeNode> stacks = new Stack<>();

        TreeNode pre = null;
        while (!stacks.empty() || p != null) {
            while (p != null) {
                stacks.push(p);
                p = p.left;
            }
            TreeNode right = stacks.peek().right;
            if (right == null || right == pre) {
                //如果又节点为空 或者有节点已经被访问过
                stacks.pop();
                System.out.println(p.val);
                pre = p;
                p = null;
            } else {
                p = p.right;
            }

        }

    }
    //后序

    public void after1(TreeNode p) {
        if (p == null) {
            return;
        }
        Stack<TreeNode> stacks = new Stack<>();

        List<Integer> list = new ArrayList<>();
        stacks.push(p);
        while (!stacks.empty()) {
            TreeNode cur = stacks.pop();
            list.add(0, cur.val);
            if (cur.left != null) {
                stacks.push(cur.left);
            }
            if (cur.right != null) {
                stacks.push(cur.right);
            }
        }
        System.out.println(list);
    }
   //层级排序
    public void levelOrder(TreeNode node) {
        List<List<Integer>> list = new ArrayList<>();
        LinkedList<TreeNode> quene = new LinkedList<>();
        quene.add(node);
        while (!quene.isEmpty()) {
            LinkedList<Integer> temp = new LinkedList<>();
            for (int i = 0; i < quene.size(); i++) {
                TreeNode poll = quene.poll();
                temp.add(poll.val);
                if (node.left != null) {
                    quene.add(node.left);
                }
                if (node.right != null) {
                    quene.add(node.right);
                }
            }
            list.add(temp);
        }
    }


    public class TreeNode {
        int val;
        TreeNode left;
        TreeNode right;

        TreeNode(int x) {
            val = x;
        }
    }
//棧實現隊列
    public class stackQuene {
        Stack<Integer> stack = new Stack<>();
        Stack<Integer> stack1 = new Stack<>();

        public void push(Integer i) {
            stack.add(i);
        }

        public void pop() {
            if (stack.size() != 0) {
                while (!stack.isEmpty()) {
                    int temp = stack.pop();
                    stack1.push(temp);
                }
            }
            stack1.pop();
        }

    }

    public int getN(int n) {
        if (n == 1) {
            return 1;
        }
        if (n == 2) {
            return 2;
        }
        return getN(n - 1) + getN(n - 2);
    }
//上樓梯
    public int getN1(int n) {
        if (n == 1) {
            return 1;
        }
        if (n == 2) {
            return 2;
        }
        int temp1 = 1;
        int temp2 = 2;
        int res = 0;
        for (int i = 3; i <= n; i++) {
            res = temp1 + temp2;
            temp1 = temp2;
            temp2 = res;
        }
        return res;
    }

    //二分法 在array中查找n
    public int sum(int[] array, int n) {
        int start = 0;
        int end = array.length;
        int mid;
        while (start <= end) {
            mid = start + (end - start) / 2;
            if (array[mid] == n) {
                return mid;
            } else if (n > array[mid]) {
                start = mid + 1;
            } else {
                end = mid - 1;
            }
        }
        return -1;
    }

    //链表求和
    public ListNode sumNode(ListNode node1, ListNode node2) {
        ListNode head = null;
        ListNode res = null;
        int carry = 0;
        while (node1 != null | node2 != null) {
            int n1 = node1 == null ? 0 : node1.val;
            int n2 = node2 == null ? 0 : node2.val;
            int sum = n1 + n2 + carry;
            if (head == null) {
                res = head = new ListNode(sum % 10);
            } else {
                head.next = new ListNode(sum % 10);
                head = head.next;
            }
            carry = sum/10;
            if(node1!=null){
                node1 = node1.next;
            }
            if(node2!=null){
                node2 = node2.next;
            }
        }
        if(carry!=0){
            head.next = new ListNode(carry);
        }
        return res;

    }


    public class ListNode {
        int val;
        ListNode next;

        ListNode() {
        }

        ListNode(int val) {
            this.val = val;
        }

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

推荐阅读更多精彩内容

  • 今天感恩节哎,感谢一直在我身边的亲朋好友。感恩相遇!感恩不离不弃。 中午开了第一次的党会,身份的转变要...
    迷月闪星情阅读 10,559评论 0 11
  • 彩排完,天已黑
    刘凯书法阅读 4,199评论 1 3
  • 表情是什么,我认为表情就是表现出来的情绪。表情可以传达很多信息。高兴了当然就笑了,难过就哭了。两者是相互影响密不可...
    Persistenc_6aea阅读 124,517评论 2 7