9.19~9.20刷题总结

使二叉树变为其镜像
类似先序遍历的方法

    public void mirror(TreeNode node){
        if(node==null)
            return;
        if(node.left==null&&node.right==null)
            return;
        TreeNode n=node.left;
        node.left=node.right;
        node.right=n;
        mirror(node.left);
        mirror(node.right);
    }

判断二叉树是否对称
左节点的右子树和右节点的左子树相同 使用递归

    boolean isSymmetrical(TreeNode pRoot){
        if(pRoot==null)
            return true;
        return comRoot(pRoot.left,pRoot.right);
    }
    
    boolean comRoot(TreeNode left,TreeNode right){
        if(left==null)
            return right==null;
        if(right==null)
            return false;
        if(left.val!=right.val)
            return false;
        return comRoot(left.right, right.left)&&comRoot(left.left, right.right);
    }

实现有Min函数的栈

    Stack<Integer> stack1=new Stack<>();
    Stack<Integer> stack2=new Stack<>();
    public void push(int node) {
        stack1.push(node);
        if(stack2.isEmpty())
            stack2.push(node);
        else{
            if(node<stack2.peek())
                stack2.push(node);
            else
                stack2.push(stack2.peek());
        }
    }
    
    public void pop() {
        stack1.pop();
        stack2.pop();
    }
    
    public int top() {
       return  stack1.peek();
    }
    
    public int min() {
        return stack2.peek();
    }

给出入栈顺序,判断出栈顺序是否正确

    public boolean IsPopOrder(int [] pushA,int [] popA) {
        if(pushA.length==0||popA.length==0)
            return false;
        Stack<Integer> s=new Stack<>();
        int popIndex=0;
        for(int i=0;i<pushA.length;i++){
            s.push(pushA[i]);
            while(!s.empty()&&s.peek()==popA[popIndex]){
                s.pop();
                popIndex++;
            }
        }
        return s.empty();
        
    }

判断是否是二叉搜索树的后序遍历序列

  public boolean judge(int[] a,int start,int end){
        if(start>=end)
            return true;
        int i=start;
        while(i<end&&a[i]<a[end]){
            i++;
        }
        for(int j=i;j<end;j++){
            if(a[j]<a[end])
                return false;
        }
        return judge(a,start,i-1)&&judge(a,i,end-1);
    }

寻找二叉树从根到叶子值为x的路径

//方法一 使用栈
    public ArrayList<ArrayList<Integer>> FindPath(TreeNode root,int target) {
       ArrayList<ArrayList<Integer>> all=new ArrayList<ArrayList<Integer>>();
       if(root==null)
           return all;
       Stack<Integer> stack=new Stack<Integer>();
       FindPath(root, target,stack,all);
       return all;
    }
    

    
    void FindPath(TreeNode root,int target,Stack<Integer> stack, ArrayList<ArrayList<Integer>> all){
        if(root==null)
            return;
        if(root.left==null&&root.right==null){
            if(root.val==target){
                ArrayList<Integer> list=new ArrayList<>();
                for(int i:stack){
                    list.add(new Integer(i));
                }
                list.add(new Integer(root.val));
                all.add(list);
            }
        }else{
            stack.push(new Integer(root.val));
            FindPath(root.left,target-root.val,stack,all);
            FindPath(root.right, target-root.val, stack, all);
            stack.pop();
        }
    }
//方法二
  public ArrayList<ArrayList<Integer>> FindPath(TreeNode root,int target) {
            if(root==null)
                return listAll;
            list.add(root.val);
            target-=root.val;
            if(target==0&&root.left==null&&root.right==null)
                listAll.add(new ArrayList<Integer>(list));
            FindPath(root.left,target);
            FindPath(root.right, target);
            list.remove(list.size()-1);
            return listAll;
        }

求字符串全排列结果 按字典顺序返回
划分为子问题 第一个数和后面每个数交换 第二个数和后面每个数交换 ...

    public ArrayList<String>  Permutation(String str) {
        char []c=str.toCharArray();
        ArrayList<String> list=new ArrayList<>();
        if(str!=null&&str.length()>0){
            permutation(c,0,list);
            Collections.sort(list);
        }
        for(String i:list)
            System.out.println(i);
        return list;
    }
    
    void permutation(char[] c,int start,ArrayList<String> list){
        if(start==c.length-1){
            //System.out.println(Arrays.toString(c));
            String s=String.valueOf(c);
            if(!list.contains(s))
                list.add(s);
        }
        for(int i=start;i<c.length;i++){
            char temp=c[start];
            c[start]=c[i];
            c[i]=temp;
            permutation(c,start+1,list);
            temp=c[start];
            c[start]=c[i];
            c[i]=temp;
        }
    }

克隆复杂链表 该链表两个指针 一个指向下一个 一个随机指向
思路:
第一步:根据原始链表每个节点N创建对应的N',把N'链接到N后面
第二步:根据原始链表每个节点N的random指针,设置新节点的random指针,为原指针的下一位
第三步:将第二步得到的链表拆分,奇数位置是原始链表,偶数位置是复制出来的链表 实现过程的一些细节要注意

//根据原始链表每个节点N创建对应的N',把N'链接到N后面
    void clonenodes(RandomListNode phead){
        RandomListNode pnode=phead;
        while(pnode!=null){
            RandomListNode pcloned=new RandomListNode(-1);
            pcloned.label=pnode.label;
            pcloned.next=pnode.next;
            pcloned.random=null;
            pnode.next=pcloned;
            pnode=pcloned.next;
        }
    }
//根据原始链表每个节点N的random指针,设置新节点的random指针,为原指针的下一位  
    void connectrandom(RandomListNode phead){
        RandomListNode pnode=phead;
        while(pnode!=null){
            RandomListNode pcloned=pnode.next;
            if(pnode.random!=null){
                pcloned.random=pnode.random.next;
            }
            pnode=pcloned.next;
        }
    }
    
    RandomListNode reconnect(RandomListNode phead){
        RandomListNode pnode=phead;
        RandomListNode pclonedHead=null;
        RandomListNode pclonedNode=null;
        if(pnode!=null){
            pclonedHead=pclonedNode=pnode.next;
            pnode.next=pclonedNode.next;
            pnode=pnode.next;
        }
        
        while(pnode!=null){
            pclonedNode.next=pnode.next;
            pclonedNode=pclonedNode.next;
            pnode.next=pclonedNode.next;
            pnode=pnode.next;
        }
        return pclonedHead;
    }
    
    RandomListNode clone(RandomListNode node){
        clonenodes(node);
        connectrandom(node);
        return reconnect(node);
    }

class RandomListNode {
    int label;
    RandomListNode next = null;
    RandomListNode random = null;

    RandomListNode(int label) {
        this.label = label;
    }
}

//O(1)时间删除链表非尾节点的节点
将下一个节点的值复制给该节点,删除下一个节点,调整链接。

    void delete(ListNode p,ListNode del){
        if(p==null||del==null)
            return;
        if(del.next!=null){
            del.val=del.next.val;
            del.next=del.next.next;
        }else if(p==del){
            p=null;
        }else{
            ListNode pnode=p;
            while(pnode.next!=del)
                pnode=pnode.next;
            pnode.next=null;
        }
    }

顺时针打印矩阵
俺圈数遍历,注意圈数的结束条件 x>2start&&y>2start
注意每次上下左右遍历执行的前提条件

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

推荐阅读更多精彩内容

  • 1 序 2016年6月25日夜,帝都,天下着大雨,拖着行李箱和同学在校门口照了最后一张合照,搬离寝室打车去了提前租...
    RichardJieChen阅读 5,083评论 0 12
  • 树的概述 树是一种非常常用的数据结构,树与前面介绍的线性表,栈,队列等线性结构不同,树是一种非线性结构 1.树的定...
    Jack921阅读 4,442评论 1 31
  • 第一章 绪论 什么是数据结构? 数据结构的定义:数据结构是相互之间存在一种或多种特定关系的数据元素的集合。 第二章...
    SeanCheney阅读 5,760评论 0 19
  • 1. 链表 链表是最基本的数据结构,面试官也常常用链表来考察面试者的基本能力,而且链表相关的操作相对而言比较简单,...
    Mr希灵阅读 1,434评论 0 20
  • 总结 想清楚再编码 分析方法:举例子、画图 第1节:画图分析方法 对于二叉树、二维数组、链表等问题,都可以采用画图...
    M_巴拉巴拉阅读 1,206评论 0 7