Reformat the C# codes.

Disable creating new line before open brace.
This commit is contained in:
krahets
2023-04-23 03:03:12 +08:00
parent ac6eece4f3
commit 73dcb4cea9
49 changed files with 561 additions and 1135 deletions

View File

@@ -8,11 +8,9 @@ using NUnit.Framework;
namespace hello_algo.chapter_stack_and_queue;
public class deque
{
public class deque {
[Test]
public void Test()
{
public void Test() {
/* 初始化双向队列 */
// 在 C# 中,将链表 LinkedList 看作双向队列来使用
LinkedList<int> deque = new LinkedList<int>();