双链表删除某个位置的结点时出现的问题
c语言写的双链表,删除某个位置的结点p,代码如下: #include <stdio.h> #include <stdlib.h> typedef struct DNode{ int data struct DNode…
链表删除结点课程无法继续
#include <iostream> using namespace std struct List { int num List *next } List *head void deleteNode(List *&head) { //在下面编写删…
- 共 1 页
- 1