| 25 | #include<stdlib.h> |
| 26 | #include<malloc.h> |
| 27 | typedef struct ListNode { |
| 28 | int Element; |
| 29 | struct ListNode* next; |
| 30 | }Node, * PNode; |
| 31 | Node* initLink() { |
| 32 | Node* p = (Node*)malloc(sizeof(Node));//创建一个头结点 |
| 33 | Node* temp = p;//声明一个指针指向头结点,用于遍历链表 |
nothing calls this directly
no outgoing calls
no test coverage detected