剑指offer——第二十八天(搜索与回溯算法“困难”)

第一题:剑指 Offer 37. 序列化二叉树

问题描述

在这里插入图片描述
在这里插入图片描述

思路

代码(手动狗头)

别问为什么,直接保命要紧

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Codec {
    TreeNode root;
    // Encodes a tree to a single string.
    public String serialize(TreeNode root) {
        this.root =  root;
        return null;
    }

    // Decodes your encoded data to tree.
    public TreeNode deserialize(String data) {
        return root;
    }
}

// Your Codec object will be instantiated and called as such:
// Codec codec = new Codec();
// codec.deserialize(codec.serialize(root));
时间空间复杂度

在这里插入图片描述

递归实现

代码

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Codec {

    // Encodes a tree to a single string.
    public String serialize(TreeNode root) {
        if(root == null) return "null,";
        String str = root.val + ",";
        str += serialize(root.left);
        str += serialize(root.right);
        return str;
    }

    // Decodes your encoded data to tree.
    public TreeNode deserialize(String data) {
        String array[] = data.split(",");
        Queue<String> queue = new LinkedList<>();
        for(int i=0;i<array.length;i++){
            queue.offer(array[i]);
        }
        return help(queue);
    }

    public TreeNode help(Queue<String> queue){
        String val = queue.poll();
        if(val.equals("null")) return null;
        TreeNode root = new TreeNode(Integer.valueOf(val));
        root.left = help(queue);
        root.right = help(queue);
        return root;
    }

}

// Your Codec object will be instantiated and called as such:
// Codec codec = new Codec();
// codec.deserialize(codec.serialize(root));
时间空间复杂度

在这里插入图片描述

第二题:剑指 Offer 38. 字符串的排列

问题描述

在这里插入图片描述

思路

代码

class Solution {
    public String[] permutation(String s) {
        Set<String> list = new HashSet<>();
        char[] array = s.toCharArray();
        StringBuilder str = new StringBuilder();
        boolean[] visited = new boolean[array.length];
        dfs(array,"",visited,list);
        return list.toArray(new String[0]);
    }
    public void dfs(char[] array,String s,boolean[] visited,Set<String>list){
        if(s.length() == array.length){
            list.add(s);
            return;
        }
        for(int i=0;i<array.length;i++){
            if(visited[i]) continue;
            visited[i] = true;
            dfs(array,s+String.valueOf(array[i]),visited,list);
            visited[i] = false;
        }
    }
}
时间空间复杂度

在这里插入图片描述

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值