mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-01 03:24:24 +08:00 
			
		
		
		
	 56b20eff36
			
		
	
	56b20eff36
	
	
	
		
			
			* .net 8.0 migration * update docs * revert change * revert change and update appendix docs * remove static * Update binary_search_insertion.cs * Update binary_search_insertion.cs * Update binary_search_edge.cs * Update binary_search_insertion.cs * Update binary_search_edge.cs --------- Co-authored-by: Yudong Jin <krahets@163.com>
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| /**
 | |
|  * File: TreeNode.cs
 | |
|  * Created Time: 2022-12-23
 | |
|  * Author: haptear (haptear@hotmail.com)
 | |
|  */
 | |
| 
 | |
| namespace hello_algo.utils;
 | |
| 
 | |
| /* 二叉树节点类 */
 | |
| public class TreeNode(int? x) {
 | |
|     public int? val = x;    // 节点值
 | |
|     public int height;      // 节点高度
 | |
|     public TreeNode? left;  // 左子节点引用
 | |
|     public TreeNode? right; // 右子节点引用
 | |
| 
 | |
|     // 序列化编码规则请参考:
 | |
|     // https://www.hello-algo.com/chapter_tree/array_representation_of_tree/
 | |
|     // 二叉树的数组表示:
 | |
|     // [1, 2, 3, 4, None, 6, 7, 8, 9, None, None, 12, None, None, 15]
 | |
|     // 二叉树的链表表示:
 | |
|     //             /——— 15
 | |
|     //         /——— 7
 | |
|     //     /——— 3
 | |
|     //    |    \——— 6
 | |
|     //    |        \——— 12
 | |
|     // ——— 1
 | |
|     //     \——— 2
 | |
|     //        |    /——— 9
 | |
|     //         \——— 4
 | |
|     //             \——— 8
 | |
| 
 | |
|     /* 将列表反序列化为二叉树:递归 */
 | |
|     static TreeNode? ListToTreeDFS(List<int?> arr, int i) {
 | |
|         if (i < 0 || i >= arr.Count || !arr[i].HasValue) {
 | |
|             return null;
 | |
|         }
 | |
|         TreeNode root = new(arr[i]) {
 | |
|             left = ListToTreeDFS(arr, 2 * i + 1),
 | |
|             right = ListToTreeDFS(arr, 2 * i + 2)
 | |
|         };
 | |
|         return root;
 | |
|     }
 | |
| 
 | |
|     /* 将列表反序列化为二叉树 */
 | |
|     public static TreeNode? ListToTree(List<int?> arr) {
 | |
|         return ListToTreeDFS(arr, 0);
 | |
|     }
 | |
| 
 | |
|     /* 将二叉树序列化为列表:递归 */
 | |
|     static void TreeToListDFS(TreeNode? root, int i, List<int?> res) {
 | |
|         if (root == null)
 | |
|             return;
 | |
|         while (i >= res.Count) {
 | |
|             res.Add(null);
 | |
|         }
 | |
|         res[i] = root.val;
 | |
|         TreeToListDFS(root.left, 2 * i + 1, res);
 | |
|         TreeToListDFS(root.right, 2 * i + 2, res);
 | |
|     }
 | |
| 
 | |
|     /* 将二叉树序列化为列表 */
 | |
|     public static List<int?> TreeToList(TreeNode root) {
 | |
|         List<int?> res = [];
 | |
|         TreeToListDFS(root, 0, res);
 | |
|         return res;
 | |
|     }
 | |
| }
 |