猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
对象销毁问题
每个函数调用完以后 不用销毁临时创建的对象吗? 比如*currentNode
完美丶沉睡
浏览 1294
回答 2
2回答
完美丶沉睡
bool PriorElem(Node *pCurrentNode,Node *pPreNode) { Node *currentNode = m_pList; Node *tempNode = NULL; while(currentNode->next!=NULL) { currentNode=currentNode->next; if (currentNode->data == pCurrentNode->data) { if (tempNode == m_pList) { return false; } pPreNode->data=tempNode->data; return true; } } return false; }这是 数据结构 链表 里找前驱的函数....这里的 *currentNode 不需要销毁么?
0
0
2
onemoo
你把完整的代码写一下吧
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
C++
typedef入门问题
1 回答
数据结构
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续