331. Verify Preorder Serialization of a Binary Tree

One way to serialize a binary tree is to use pre-order traversal. When we encounter a non-null node, we record the node’s value. If it is a null node, we record using a sentinel value such as #.

     _9_
    /   \
   3     2
  / \   / \
 4   1  #  6
/ \ / \   / \
# # # #   # #

For example, the above binary tree can be serialized to the string “9,3,4,#,#,1,#,#,2,#,6,#,#”, where # represents a null node.

Given a string of comma separated values, verify whether it is a correct preorder traversal serialization of a binary tree. Find an algorithm without reconstructing the tree.

Each comma separated value in the string must be either an integer or a character ‘#’ representing null pointer.

You may assume that the input format is always valid, for example it could never contain two consecutive commas such as “1,,3”.

Example 1:
“9,3,4,#,#,1,#,#,2,#,6,#,#”
Return true

Example 2:
“1,#”
Return false

Example 3:
“9,#,#,1”
Return false

s思路:
1. 判断树的表示方法是否有效,而且不让构造树。
2. 先看用iterative的方法,用stack就可以搞定,例如:”9,3,4,#,#,1,#,#,2,#,6,#,#”,碰到数就直接push到stack,碰到#,则讨论一下,当第一次遇到#也直接push,第二次遇到#则把之前的#pop,还要把#前的数pop,然后再放入#.注意的是,每次放入的时候,都要检查stack顶上是否有#,如果有,就要pop两次再看是否有#,直到前面是数或stack为空为止!
3. 参考https://discuss.leetcode.com/topic/45326/c-4ms-solution-o-1-space-o-n-time/2 真是妙不可言!思考自己上面的思路,讨论的情况很是比较多,虽然做法中规中矩,但是如果足够敏锐的话,就可以想到这种做法太focus到细节上了,应该比较top-down的解法。比如上面的参考。思路是这样的,实时统计树的容量capacity,初始化capacity=1,表示根节点,然后遍历的时候,只需找’,’,因为#就在“,”之前,而且我们只关注是否是#,如果不是#,表示一个新节点,那么capacity就增加两个,而且每次遍历一个节点时,就capacity–用来表示由于遇到一个节点,容量减少!如果在某个时候,容量<0,则表示不能构造树了。最后容量等于0,表示刚刚装满,因此可以构造树!
4. 这个统计数据结构的某个参量的做法,确实很赞,想到在图的遍历中,如果用bfs,也可以来统计入度,出度这些参量。你看,这里面也一样是,需要统计树的一个参量!方法很特殊,不过值得推广,统计数据结构的某一个参量!

//方法1:用stack!随时检查是否有number##的情况!
class Solution {
public:
    bool isValidSerialization(string preorder) {
        //
        stack<string> ss;
        int i=0;
        preorder.append(",");
        while(i<preorder.size()){
            if(preorder[i]==',') {i++;continue;}
            int j=i;
            while(j<preorder.size()&&preorder[j]!=',')
                j++;
            if(preorder[i]=='#'){
                //if(ss.empty()) return false;//bug:当preorder="#",就可能直接把#放入stack
                if(ss.empty()||ss.top()[0]!='#') ss.push("#");
                else{
                    while(ss.size()>=2&&ss.top()=="#"){
                        ss.pop();
                        if(ss.top()[0]=='#') return false; 
                        ss.pop();   
                    }   
                    ss.push("#");
                }       
            }else
                ss.push(preorder.substr(i,j-i));    
            i=j;
        }
        return ss.size()==1&&ss.top()=="#";
    }
};


//方法2:统计capacity. 系统的方法,就是比detail的方法代码简洁,不过稍微难理解些
class Solution {
public:
    bool isValidSerialization(string preorder) {
        //
        if(preorder.size()==0) return false;
        preorder+=',';
        int capacity=1;
        int sz=preorder.size();
        for(int i=0;i<sz;i++){
            if(preorder[i]!=',') continue;
            capacity--;
            if(capacity<0) return false;
            if(preorder[i-1]!='#') capacity+=2;
        }
        return capacity==0;
    }
};
基于bert实现关系三元组抽取python源码+数据集+项目说明.zip基于bert实现关系三元组抽取python源码+数据集+项目说明.zip基于bert实现关系三元组抽取python源码+数据集+项目说明.zip基于bert实现关系三元组抽取python源码+数据集+项目说明.zip基于bert实现关系三元组抽取python源码+数据集+项目说明.zip 个人大四的毕业设计、课程设计、作业、经导师指导并认可通过的高分设计项目,评审平均分达96.5分。主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的学习者,也可作为课程设计、期末大作业。 [资源说明] 不懂运行,下载完可以私聊问,可远程教学 该资源内项目源码是个人的毕设或者课设、作业,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96.5分,放心下载使用! 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),供学习参考。
【Solution】 To convert a binary search tree into a sorted circular doubly linked list, we can use the following steps: 1. Inorder traversal of the binary search tree to get the elements in sorted order. 2. Create a doubly linked list and add the elements from the inorder traversal to it. 3. Make the list circular by connecting the head and tail nodes. 4. Return the head node of the circular doubly linked list. Here's the Python code for the solution: ``` class Node: def __init__(self, val): self.val = val self.prev = None self.next = None def tree_to_doubly_list(root): if not root: return None stack = [] cur = root head = None prev = None while cur or stack: while cur: stack.append(cur) cur = cur.left cur = stack.pop() if not head: head = cur if prev: prev.right = cur cur.left = prev prev = cur cur = cur.right head.left = prev prev.right = head return head ``` To verify the accuracy of the code, we can use the following test cases: ``` # Test case 1 # Input: [4,2,5,1,3] # Output: # Binary search tree: # 4 # / \ # 2 5 # / \ # 1 3 # Doubly linked list: 1 <-> 2 <-> 3 <-> 4 <-> 5 # Doubly linked list in reverse order: 5 <-> 4 <-> 3 <-> 2 <-> 1 root = Node(4) root.left = Node(2) root.right = Node(5) root.left.left = Node(1) root.left.right = Node(3) head = tree_to_doubly_list(root) print("Binary search tree:") print_tree(root) print("Doubly linked list:") print_list(head) print("Doubly linked list in reverse order:") print_list_reverse(head) # Test case 2 # Input: [2,1,3] # Output: # Binary search tree: # 2 # / \ # 1 3 # Doubly linked list: 1 <-> 2 <-> 3 # Doubly linked list in reverse order: 3 <-> 2 <-> 1 root = Node(2) root.left = Node(1) root.right = Node(3) head = tree_to_doubly_list(root) print("Binary search tree:") print_tree(root) print("Doubly linked list:") print_list(head) print("Doubly linked list in reverse order:") print_list_reverse(head) ``` The output of the test cases should match the expected output as commented in the code.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值