⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 node.cpp

📁 用MFC 实现线性表的插入删除等
💻 CPP
字号:
// node.cpp: implementation of the node class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "sdsd.h"
#include "node.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

node::node()
{

}

node::~node()
{

}

void node::Drawed(CDC*pDC)
{
	
		CString str;
		str.Format("%d",single);
		pDC->TextOut(point.x+12,point.y-25,str);

pDC->Rectangle(point.x,point.y,point.x+40,point.y+40);
pDC->TextOut(point.x+12,point.y+12,data);

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -