1.Please remove all the unused libs for every files

2.add a file header for all the files
This commit is contained in:
zhuzhiqing 2022-12-23 18:28:17 +08:00
parent a427cb1b4d
commit 7b538ce21c
27 changed files with 175 additions and 103 deletions

View File

@ -1,11 +1,10 @@
using Newtonsoft.Json.Linq; /**
* File: list.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using NUnit.Framework; using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace hello_algo.chapter_array_and_linkedlist namespace hello_algo.chapter_array_and_linkedlist
{ {

View File

@ -1,10 +1,10 @@
using Newtonsoft.Json.Linq; /**
* File: my_list.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using NUnit.Framework; using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace hello_algo.chapter_array_and_linkedlist namespace hello_algo.chapter_array_and_linkedlist
{ {

View File

@ -1,9 +1,10 @@
using NUnit.Framework; /**
using System; * File: leetcode_two_sum.cs
using System.Collections.Generic; * Created Time: 2022-12-23
using System.Linq; * Author: haptear (haptear@hotmail.com)
using System.Text; */
using System.Threading.Tasks;
using NUnit.Framework;
namespace hello_algo.chapter_computational_complexity namespace hello_algo.chapter_computational_complexity
{ {

View File

@ -1,10 +1,11 @@
using hello_algo.include; /**
* File: space_complexity.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using NUnit.Framework; using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace hello_algo.chapter_computational_complexity namespace hello_algo.chapter_computational_complexity
{ {

View File

@ -1,4 +1,10 @@
using NUnit.Framework; /**
* File: time_complexity.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using NUnit.Framework;
namespace hello_algo.chapter_computational_complexity namespace hello_algo.chapter_computational_complexity
{ {

View File

@ -1,8 +1,8 @@
using System; /**
using System.Collections.Generic; * File: worst_best_time_complexity.cs
using System.Linq; * Created Time: 2022-12-23
using System.Text; * Author: haptear (haptear@hotmail.com)
using System.Threading.Tasks; */
namespace hello_algo.chapter_computational_complexity namespace hello_algo.chapter_computational_complexity
{ {

View File

@ -1,7 +1,10 @@
/**
* File: array_hash_map.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using NUnit.Framework; using NUnit.Framework;
using System.Collections.Immutable;
namespace hello_algo.chapter_hashing namespace hello_algo.chapter_hashing
{ {

View File

@ -1,7 +1,12 @@
/**
* File: hash_map.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include; using hello_algo.include;
using NUnit.Framework; using NUnit.Framework;
using System.Collections.Immutable;
namespace hello_algo.chapter_hashing namespace hello_algo.chapter_hashing
{ {

View File

@ -1,9 +1,10 @@
using NUnit.Framework; /**
using System; * File: binary_search.cs
using System.Collections.Generic; * Created Time: 2022-12-23
using System.Linq; * Author: haptear (haptear@hotmail.com)
using System.Text; */
using System.Threading.Tasks;
using NUnit.Framework;
namespace hello_algo.chapter_searching namespace hello_algo.chapter_searching
{ {

View File

@ -1,11 +1,11 @@
using hello_algo.include; /**
* File: hashing_search.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using NUnit.Framework; using NUnit.Framework;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace hello_algo.chapter_searching namespace hello_algo.chapter_searching
{ {

View File

@ -1,10 +1,11 @@
using hello_algo.include; /**
* File: linear_search.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using NUnit.Framework; using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace hello_algo.chapter_searching namespace hello_algo.chapter_searching
{ {

View File

@ -1,9 +1,10 @@
using NUnit.Framework; /**
using System; * File: bubble_sort.cs
using System.Collections.Generic; * Created Time: 2022-12-23
using System.Linq; * Author: haptear (haptear@hotmail.com)
using System.Text; */
using System.Threading.Tasks;
using NUnit.Framework;
namespace hello_algo.chapter_sorting namespace hello_algo.chapter_sorting
{ {

View File

@ -1,4 +1,10 @@
using NUnit.Framework; /**
* File: insertion_sort.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using NUnit.Framework;
namespace hello_algo.chapter_sorting namespace hello_algo.chapter_sorting
{ {

View File

@ -1,9 +1,10 @@
using NUnit.Framework; /**
using System; * File: merge_sort.cs
using System.Collections.Generic; * Created Time: 2022-12-23
using System.Linq; * Author: haptear (haptear@hotmail.com)
using System.Text; */
using System.Threading.Tasks;
using NUnit.Framework;
namespace hello_algo.chapter_sorting namespace hello_algo.chapter_sorting
{ {

View File

@ -1,9 +1,10 @@
using NUnit.Framework; /**
using System; * File: quick_sort.cs
using System.Collections.Generic; * Created Time: 2022-12-23
using System.Linq; * Author: haptear (haptear@hotmail.com)
using System.Text; */
using System.Threading.Tasks;
using NUnit.Framework;
namespace hello_algo.chapter_sorting namespace hello_algo.chapter_sorting
{ {

View File

@ -1,5 +1,9 @@
using System; /**
using hello_algo.include; * File: array_queue.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using NUnit.Framework; using NUnit.Framework;
namespace hello_algo.chapter_stack_and_queue namespace hello_algo.chapter_stack_and_queue

View File

@ -1,5 +1,9 @@
using System; /**
using hello_algo.include; * File: array_stack.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using NUnit.Framework; using NUnit.Framework;
namespace hello_algo.chapter_stack_and_queue namespace hello_algo.chapter_stack_and_queue

View File

@ -1,4 +1,9 @@
using System; /**
* File: linkedlist_queue.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include; using hello_algo.include;
using NUnit.Framework; using NUnit.Framework;

View File

@ -1,4 +1,9 @@
using System; /**
* File: linkedlist_stack.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include; using hello_algo.include;
using NUnit.Framework; using NUnit.Framework;

View File

@ -1,5 +1,9 @@
using System; /**
using hello_algo.include; * File: queue.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using NUnit.Framework; using NUnit.Framework;
namespace hello_algo.chapter_stack_and_queue namespace hello_algo.chapter_stack_and_queue

View File

@ -1,6 +1,10 @@
/**
* File: stack.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using NUnit.Framework; using NUnit.Framework;
using System.Collections.Immutable;
namespace hello_algo.chapter_stack_and_queue namespace hello_algo.chapter_stack_and_queue
{ {
@ -18,7 +22,7 @@ namespace hello_algo.chapter_stack_and_queue
stack.Push(2); stack.Push(2);
stack.Push(5); stack.Push(5);
stack.Push(4); stack.Push(4);
Console.WriteLine("栈 stack = " + String.Join(",", stack.ToImmutableArray())); Console.WriteLine("栈 stack = " + string.Join(",", stack.ToArray()));
/* 访问栈顶元素 */ /* 访问栈顶元素 */
int peek = stack.Peek(); int peek = stack.Peek();
@ -26,7 +30,7 @@ namespace hello_algo.chapter_stack_and_queue
/* 元素出栈 */ /* 元素出栈 */
int pop = stack.Pop(); int pop = stack.Pop();
Console.WriteLine("出栈元素 pop = " + pop + ",出栈后 stack = " + String.Join(",", stack.ToImmutableArray())); Console.WriteLine("出栈元素 pop = " + pop + ",出栈后 stack = " + string.Join(",", stack.ToArray()));
/* 获取栈的长度 */ /* 获取栈的长度 */
int size = stack.Count(); int size = stack.Count();

View File

@ -1,6 +1,11 @@
using hello_algo.include; /**
* File: avl_tree.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using NUnit.Framework; using NUnit.Framework;
using System.Collections.Generic;
namespace hello_algo.chapter_tree namespace hello_algo.chapter_tree
{ {
@ -69,7 +74,7 @@ namespace hello_algo.chapter_tree
} }
/* 执行旋转操作,使该子树重新恢复平衡 */ /* 执行旋转操作,使该子树重新恢复平衡 */
private TreeNode? rotate(TreeNode? node) TreeNode? rotate(TreeNode? node)
{ {
if (node == null) if (node == null)
return node; return node;

View File

@ -1,7 +1,11 @@
using hello_algo.include; /**
using NUnit.Framework; * File: binary_search_tree.cs
using System.Collections.Generic; * Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using NUnit.Framework;
namespace hello_algo.chapter_tree namespace hello_algo.chapter_tree
{ {
@ -31,11 +35,7 @@ namespace hello_algo.chapter_tree
return cur; return cur;
} }
/// <summary> /* 插入结点 */
/// 插入结点
/// </summary>
/// <param name="num"></param>
/// <returns></returns>
TreeNode? insert(int num) TreeNode? insert(int num)
{ {
// 若树为空,直接提前返回 // 若树为空,直接提前返回

View File

@ -1,7 +1,11 @@
/**
* File: binary_tree.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include; using hello_algo.include;
using NUnit.Framework; using NUnit.Framework;
using System.Collections.Generic;
namespace hello_algo.chapter_tree namespace hello_algo.chapter_tree
{ {

View File

@ -1,4 +1,10 @@
using hello_algo.include; /**
* File: binary_tree_bfs.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using NUnit.Framework; using NUnit.Framework;
namespace hello_algo.chapter_tree namespace hello_algo.chapter_tree

View File

@ -1,9 +1,8 @@
using System; /**
using System.Collections.Generic; * File: PrintUtil.cs
using System.Diagnostics.SymbolStore; * Created Time: 2022-12-23
using System.Linq; * Author: haptear (haptear@hotmail.com)
using System.Text; */
using System.Threading.Tasks;
namespace hello_algo.include namespace hello_algo.include
{ {

View File

@ -1,3 +1,9 @@
/**
* File: TreeNode.cs
* Created Time: 2022-12-23
* Author: haptear (haptear@hotmail.com)
*/
namespace hello_algo.include namespace hello_algo.include
{ {
public class TreeNode public class TreeNode