Rename the common modules.

This commit is contained in:
krahets
2023-04-24 04:20:51 +08:00
parent 145975b335
commit 40e6d2b415
32 changed files with 285 additions and 27 deletions

View File

@@ -2,7 +2,7 @@
// Created Time: 2022-12-16
// Author: mingXta (1195669834@qq.com)
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_array_and_linkedlist;

View File

@@ -4,7 +4,7 @@
* Author: hpstory (hpstory1024@163.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
using System.IO;

View File

@@ -4,7 +4,7 @@
* Author: hpstory (hpstory1024@163.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_backtracking;

View File

@@ -4,7 +4,7 @@
* Author: hpstory (hpstory1024@163.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_backtracking;

View File

@@ -4,7 +4,7 @@
* Author: hpstory (hpstory1024@163.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_backtracking;

View File

@@ -4,7 +4,7 @@
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_computational_complexity;

View File

@@ -4,7 +4,7 @@
* Author: zjkung1123 (zjkung1123@gmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_graph;

View File

@@ -4,7 +4,7 @@
* Author: zjkung1123 (zjkung1123@gmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_graph;

View File

@@ -4,7 +4,7 @@
* Author: hpstory (hpstory1024@163.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_graph;

View File

@@ -4,7 +4,7 @@
* Author: hpstory (hpstory1024@163.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_graph;

View File

@@ -5,7 +5,7 @@
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_hashing;

View File

@@ -4,7 +4,7 @@
* Author: zjkung1123 (zjkung1123@gmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_heap;

View File

@@ -4,7 +4,7 @@
* Author: zjkung1123 (zjkung1123@gmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_heap;

View File

@@ -4,7 +4,7 @@
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_searching;

View File

@@ -4,7 +4,7 @@
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_searching;

View File

@@ -4,7 +4,7 @@
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_stack_and_queue;

View File

@@ -4,7 +4,7 @@
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_stack_and_queue;

View File

@@ -4,7 +4,7 @@
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_tree;

View File

@@ -4,7 +4,7 @@
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_tree;

View File

@@ -4,7 +4,7 @@
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_tree;

View File

@@ -4,7 +4,7 @@
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_tree;

View File

@@ -4,7 +4,7 @@
* Author: haptear (haptear@hotmail.com)
*/
using hello_algo.include;
using hello_algo.utils;
using NUnit.Framework;
namespace hello_algo.chapter_tree;

View File

@@ -2,7 +2,7 @@
// Created Time: 2022-12-16
// Author: mingXta (1195669834@qq.com)
namespace hello_algo.include;
namespace hello_algo.utils;
/* Definition for a singly-linked list node */
public class ListNode {

View File

@@ -4,7 +4,7 @@
* Author: haptear (haptear@hotmail.com), krahets (krahets@163.com)
*/
namespace hello_algo.include;
namespace hello_algo.utils;
public class Trunk {
public Trunk? prev;

View File

@@ -4,7 +4,7 @@
* Author: haptear (haptear@hotmail.com)
*/
namespace hello_algo.include;
namespace hello_algo.utils;
/* 二叉树节点类 */
public class TreeNode {

View File

@@ -4,7 +4,7 @@
* Author: zjkung1123 (zjkung1123@gmail.com), krahets (krahets@163.com)
*/
namespace hello_algo.include;
namespace hello_algo.utils;
/* 顶点类 */
public class Vertex {