Clion单步调试
摘要:
如下代码做链表初始化的代码 void LinkList::CreateLinkList(int n) { ElemType *pnew, *ptemp; if(head=NULL){ cout << "Error head NULL" << endl; } ptemp = head; if (n < 阅读全文
posted @ 2021-06-30 18:32 framework开发 阅读(737) 评论(0) 推荐(0) 编辑