mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2026-02-02 18:39:09 +08:00
fix: 修复C#代码高亮问题
This commit is contained in:
@@ -742,7 +742,7 @@ impl Solution{
|
||||
}
|
||||
```
|
||||
### C#
|
||||
```C#
|
||||
```csharp
|
||||
// 前序遍历
|
||||
public IList<int> PreorderTraversal(TreeNode root)
|
||||
{
|
||||
@@ -772,7 +772,7 @@ public IList<int> PreorderTraversal(TreeNode root)
|
||||
return res;
|
||||
}
|
||||
```
|
||||
```C#
|
||||
```csharp
|
||||
// 中序遍历
|
||||
public IList<int> InorderTraversal(TreeNode root)
|
||||
{
|
||||
@@ -803,7 +803,7 @@ public IList<int> InorderTraversal(TreeNode root)
|
||||
}
|
||||
```
|
||||
|
||||
```C#
|
||||
```csharp
|
||||
// 后序遍历
|
||||
public IList<int> PostorderTraversal(TreeNode root)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user