多种方法解决leetcode经典题目-LCR 155. 将二叉搜索树转化为排序的双向链表, 同时弄透引用变更带来的bug
1描述2解法一:使用list列表粗出中序遍历的结果,然后再依次处理list中的元素并且双向链接publicNodetreeToDoublyList2(Noderoot){if(root==null)returnroot;Nodedummy=newNode(-10000);Listans=newArrayListans){if(root==null){return;}dfs2(root.left,a