摘要:
## Encoding编码 先看笔试题目 ```c# string strTmp = "a1某某某"; int a = System.Text.Encoding.Default.GetBytes(strTmp).Length; int b = strTmp.Length; Console.Write 阅读全文
摘要:
翻转二叉树 leetcode题目传送门 题目描述 思路 按顺序依次交换二叉树的左右节点 实现 交换左右节点,递归遍历 public class TreeNode { public int val; public TreeNode left; public TreeNode right; public 阅读全文