Update graph_adjacency_list.java, .cs

This commit is contained in:
krahets
2023-02-15 21:45:35 +08:00
parent 1209261bdd
commit 0fa78e4b3b
3 changed files with 5 additions and 4 deletions

View File

@@ -4,8 +4,10 @@
* Author: zjkung1123 (zjkung1123@gmail.com), krahets (krahets@163.com)
*/
namespace hello_algo.include;
/* 顶点类 */
class Vertex
public class Vertex
{
public int Val { get; init; }
public Vertex(int val)