We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2d14d6 commit 650e33bCopy full SHA for 650e33b
problems/二叉树理论基础.md
@@ -302,9 +302,19 @@ impl<T> TreeNode<T> {
302
}
303
304
305
-```
306
+```
307
+```c#
308
+public class TreeNode
309
+{
310
+ public int val;
311
+ public TreeNode left;
312
+ public TreeNode right;
313
+ public TreeNode(int x) { val = x; }
314
+}
315
316
<p align="center">
317
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
318
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
319
</a>
320
+
0 commit comments