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

📄 link.cpp

📁 循环链表的实现程序
💻 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 + -