算法进阶三

单调栈的应用

Image 14.png
Image 15.png

单调栈的做法:找到每个数左边第一个比它大的数,右边第一个比它大的数串到它下面。

  • 证明 :形成的不是森林,而是一个颗数目。
    首先,数组中没有重复值。最大值一定会作为整棵树的头结点。任何一个节点都会找一个比他大的窜到他底下。所以,每一个节点都有归属,最终以最大值作为头部。因此,是一个树,不是多颗树,形不成森林。

  • 证明:这个流程的正确性,不会形成多叉树,最多形成二叉树。
    因为我们的逻辑是:左边离我最近比我大的数,右边离我最近的比我大的数,挂在这两个数中较小的那个数的下面。会不会产生一个孩子有多个节点的时候。

Image 16.png

package com.znst;

import java.util.HashMap;
import java.util.LinkedList;
import java.util.Stack;

public class Demo2 {
    
    public static class Node{
        public int value;
        public Node left;
        public Node right;
        
        public Node(int data) {
            this.value = data;
        }
        
        public static Node getMaxTree(int[] arr) {
            Node[] nArr = new Node[arr.length];
            for(int i=0;i!=arr.length;i++) {
                nArr[i]=new Node(arr[i]);
            }
            Stack<Node> stack = new Stack<Node>();
            HashMap<Node,Node> lBitmap = new HashMap<Node,Node>();
            HashMap<Node,Node> rBitmap = new HashMap<Node,Node>();
            for(int i=0;i!=nArr.length;i++) {
                Node curNode = nArr[i];
                while((!stack.isEmpty())&&stack.peek().value<curNode.value) {
                    popStackSetMap(stack,lBitmap);
                }
                stack.push(curNode);
            }
            while(!stack.isEmpty()) {
                popStackSetMap(stack,lBitmap);
            }
            for(int i= nArr.length-1;i!=-1;i--) {
                Node curNode = nArr[i];
                while((!stack.isEmpty())&&stack.peek().value<curNode.value) {
                    popStackSetMap(stack,rBitmap);
                }
                stack.push(curNode);
            }
            while(!stack.isEmpty()) {
                popStackSetMap(stack,rBitmap);
            }
            Node head = null;
            for(int i=0;i!=nArr.length;i++) {
                Node curNode = nArr[i];
                Node left = lBitmap.get(curNode);
                Node right = rBitmap.get(curNode);
                if(left == null&& right==null) {
                    head = curNode;
                }else if(left == null) {
                    if(right.left == null) {
                        right.left = curNode;
                    }else {
                        right.right = curNode;
                    }
                }else if(right == null) {
                    if(left.left==null) {
                        left.left = curNode;
                    }else {
                        left.right = curNode;
                    }
                }else {
                    Node parent = left.value<right.value ? left:right ;
                    if(parent.left == null) {
                        parent.left = curNode;
                    }else {
                        parent.right = curNode;
                    }
                }
            }
            
            
            return head;
        }
        
    }
    

    public static void popStackSetMap(Stack<Node> stack,HashMap<Node,Node> map) {
        Node popNode = stack.pop();
        if(stack.isEmpty()) {
            map.put(popNode, null);
        }else {
            map.put(popNode, stack.peek());
        }
    }
    public static void printPreOrder(Node head) {
        if(head == null) {
            return ;
        }
        System.out.print(head.value+" ");
        printPreOrder(head.left);
        printPreOrder(head.right);
    }
    public static void printInOrder(Node head) {
        if(head==null) {
            return;
        }
        printPreOrder(head.left);
        System.out.println(head.value+" ");
        printPreOrder(head.right);
    }
    
    public static void main(String[] args) {
        int[] uniqueArr = {3,4,5,1,2};
        Node head = getMaxTree(uniqueArr);
        printPreOrder(head);
        System.out.println();
        printInOrder(head);
    }
}

求最大子矩阵大小

Image 17.png

Image 19.png
package com.znst;

import java.util.Stack;

public class Demo3 {

    public static maxRecSize(int[][] map) {
        if(map==null || map.length=0||map[0].length==0) {
            return 0;
        }
        int maxArea =0;
        int[] height = new int[map[0].length];
        for(int i=0;i<map.length;i++) {
            for(int j =0;j<map[0].length;j++) {
                height[j]=map[i][j]==0?0:height[j]+1;
            }
            maxArea = Math.max(maxRecFromBottom(height), maxArea);
        }
        return maxArea;
    }
    //[4,3,2,5,6]
    public static int maxRecFromBottom(int[] height) {
        if(height==null||height.length==0) {
            return 0;
        }
        int maxArea =0;
        Stack<Integer> stack = new Stack<Integer>();
        for(int i=0 ;i<height.length;i++) {
            while(!stack.isEmpty()&&height[i]<=height[stack.peek()]) {//当栈不为空,当前数小于栈顶的值
                int j = stack.pop();
                int k = stack.isEmpty()?-1:stack.peek();
                int curArea = (i-k-1)*height[j];
                maxArea = Math.max(maxArea, curArea);
            }
            stack.push(i);
        }
        while(!stack.isEmpty()) {
            int j = stack.pop();
            int k = stack.isEmpty()?-1:stack.peek();
            int curArea = (height.length-k-1)*height[j];
            maxArea = Math.max(maxArea, ,curArea);
        }
        return maxArea;
    }
}

案例:
Image 20.png

Image 1.png

证明:
思想:用小的去找大的,最小的找到第一大的就停,所以在最高和次高中间,从i出发,一定找到2个比他大的


Image 22.png

Image 2.png

Image 3.png

Image 4.png

Image 5.png

Image 6.png
package com.znst;

import java.util.Scanner;
import java.util.Stack;

public class Demo4 {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        while(in.hasNextInt()) {
            int size = in.nextInt();
            int[] arr = new int[size];
            for(int i=0;i<size;i++) {
                arr[i]= in.nextInt();
            }
            System.out.println(communications(arr));
        }
        in.close();
    }
    public static int nextIndex(int size,int i) {//在一个环形数组中
        return i<(size -1)?(i+1):0;
    }
    public static long getInternalSum(int n) {//Ck2的实现
        return n==1L?0L:(long)n*(long)(n-1)/2L;//Ck2
    }
    public static class Pair{
        public int value;
        public int times;
        public Pair(int value) {
            this.value = value;
            this.times =1;
        }
    }
    
    public static long communications(int[] arr) {
        if(arr==null||arr.length<2) {
            return 0;
        }
        int size = arr.length;
        int maxIndex =0;
        for(int i=0;i<size;i++) {//找到最大值的位置
            maxIndex = arr[maxIndex]<arr[i]?i:maxIndex;
        }
        
        int value = arr[maxIndex];//最大值
        int index = nextIndex(size,maxIndex);//最大值位置的下一个
        long res =0L;
        Stack<Pair> stack = new Stack<Pair>();
        stack.push(new Pair(value));
        while(index!=maxIndex) {
            value = arr[index];
            while(!stack.isEmpty()&&stack.peek().value<value) {
                int times = stack.pop().times;
//              res+=getInternalSum(times)+times;  //C(2,times)+2*times;
//              res+=stack.isEmpty()?0:times;
                res+=getInternalSum(times)+2*times;
                
            }
            if(!stack.isEmpty()&&stack.peek().value==value) {
                stack.peek().times++;
            }else {
                stack.push(new Pair(value));
            } 
            index = nextIndex(size,index);
        }
        
        
        while(!stack.isEmpty()) { 
            int times = stack.pop().times;
            res+=getInternalSum(times);
            if(!stack.isEmpty()) {
                res+=times;
                if(stack.size()>1) {
                    res+=times;
                }else {
                    res+=stack.peek().times>1?times:0;
                }
            }
        }
        return res;
    }
    
}

Morris遍历:利用Morris遍历实现二叉树的先序,中序,后序遍历,时间复杂度O(N),额外空间复杂度O(1)。

来到的当前节点,记为Cur(引用)
1)如果cur无左孩子,cur向右移动(cur = cur.right)

  1. 如果cur有左孩子,找到cur左子树上最右的节点,记为mostright
    a.如果mostright的right指针指向空,让其指向cur,cur向左移动(cur=cur.left)
    b.如果mostright指向cur,让其指向空,cur向右移动


    Image 7.png
Image 8.png

当cur来到4节点时,4的指针指向2,


Image 9.png

Image 10.png

Image 11.png
package com.znst;

import java.util.Scanner;
import java.util.Stack;

public class Demo4 {

    public static void main(String[] args) {
    
    }
    
    public static void process(Node head) {
        if(head == null) {
            return;
        }
        //1
        System.out.println(head.value);
        process(head.left);
        //2
        System.out.println(head.value);
        process(head.right);
        //3
        System.out.println(head.value);
    }
    
    public static class Node{
        public int value;
        Node left;
        Node right;
        public Node(int data) {
            this.value = data;
        }
    }

    public static void morrisIn(Node head) {
        if(head ==null) {
            return ;
        }
        Node cur = head;
        Node mostRight = null;
        while(cur!=null) {
            mostRight = cur.left;
            if(mostRight!=null) {//左孩子不为空
                while(mostRight.right!=null&&mostRight.right!=cur) {
                    mostRight = mostRight.right;
                }
                if(mostRight.right == null) {
                    mostRight.right = cur;
                    cur = cur.left;
                    continue;
                }else { 
                    mostRight.right = null;
                }
            }
            System.out.print(cur.value+" ");
            cur = cur.right;
        }
        System.out.println();
    }
    
    /*
     * morris改先序遍历
     */
    public static void morrisPre(Node head) {
        if(head==null) {
            return;
        }
        Node cur = head;
        Node mostRight = null;
        while(cur!=null) {
            mostRight = cur.left;
            if(mostRight!=null) {
                while(mostRight.right!=null&&mostRight.right!=cur) {
                    mostRight = mostRight.right;
                }
                if(mostRight.right ==null) {
                    mostRight.right = cur;
                    System.out.println(cur.value+" ");
                    cur = cur.left;
                    continue;
                }else {
                    mostRight.right = null;
                }
            }else {//当前节点没有左子树
                System.out.print(cur.value+" ");
            }
            cur = cur.right;
        }
        System.out.println();
    }
    
    public static void morrisPos(Node head) {
        if(head == null) {
            return ;
        }
        Node cur1 = head;
        Node cur2 = null;
        while(cur1!=null) {
            cur2 = cur1.left;
            if(cur2!=null) {
                while(cur2.right!=null&&cur2.right!=cur1) {
                    cur2 = cur2.right;
                }
                if(cur2.right ==null) {
                    cur2.right = cur1;
                    cur1 = cur1.left;
                    continue;
                }else {
                    cur2.right = null;
                    printEdge(cur1.left);
                }
            }
            cur1 = cur1.left;
        }
        printEdge(head); 
        System.out.println();
    }
    
    public static void printEdge(Node head) {
        Node tail = reverseEdge(head);
        Node cur = tail;
        while(cur != null) {
            System.out.print(cur.value+" ");
            cur = cur.right;
        }
        reverseEdge(tail);
    }
}

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

推荐阅读更多精彩内容

  • 树的概述 树是一种非常常用的数据结构,树与前面介绍的线性表,栈,队列等线性结构不同,树是一种非线性结构 1.树的定...
    Jack921阅读 4,447评论 1 31
  • 1 序 2016年6月25日夜,帝都,天下着大雨,拖着行李箱和同学在校门口照了最后一张合照,搬离寝室打车去了提前租...
    RichardJieChen阅读 5,096评论 0 12
  • 二叉树的遍历想必大家都不陌生,主要有三种遍历方式:前序遍历(pre-order traversal),中序遍历(i...
    akak18183阅读 1,114评论 0 1
  • 上一篇文章讲述了树的概念, 特征以及分类, 旨在让我们理解什么是树, 树的一些常用的概念是什么,树的分类有哪些等。...
    DevCW阅读 2,024评论 4 10
  • MySQL远程登录 MySQL MAC5.7.17及以上版本中文显示乱码问题 若编码信息如图,则无需设置。若dat...
    PengFly阅读 762评论 0 0