?? link.cpp
字號:
// link.cpp: implementation of the link class.
//
//////////////////////////////////////////////////////////////////////
#include "link.h"
#include <assert.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
link::~link()
{
}
link* link::insert(int val)
{
ptrToNextLink = new link(val,ptrToNextLink);
// assert(ptrToNextLink);
return ptrToNextLink;
}
link::link(const link &source):value(source.value),ptrToNextLink(source.ptrToNextLink)
{
}
link::link(int linkValue, link *nextPtr):value(linkValue),ptrToNextLink(nextPtr)
{
}
link* link::duplicate() const
{
link *newlink;
if(ptrToNextLink) newlink = new link(value,ptrToNextLink->duplicate());
else newlink = new link(value,0);
assert(newlink);
return newlink;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -