📄 lxedge.cpp
字号:
// lxedge.cpp: implementation of the lxedge class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "lxedge.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
lxedge::lxedge()
{
vertex=-1;
weight=-1;
}
lxedge::lxedge(int v, int w)
{
vertex=v;
weight=w;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -