每个函数调用完以后 不用销毁临时创建的对象吗? 比如*currentNode
2 回答
完美丶沉睡
TA贡献1条经验 获得超0个赞
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 不需要销毁么?
- 2 回答
- 0 关注
- 1293 浏览
添加回答
举报
0/150
提交
取消