edge.cs
来自「此程序可实现一定的功能」· CS 代码 · 共 32 行
CS
32 行
using System;
using System.Collections.Generic;
using System.Text;
namespace MyGraph
{
public class EdgeLink
{
public int destVtx;
public string info;
public EdgeLink(int v)
{
destVtx = v;
info = "";
}
}
public class Edge
{
public int from;
public int to;
public string info;
public Edge(int f, int t)
{
from = f;
to = t;
info = "";
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?