我要复制一个链表_
void list_piece(const node* start_ptr, const node* end_ptr, node*& head_ptr, node*& tail_ptr)
start_ptr 和end_ptr 不是NULL
head_ptr tail_ptr 是新链表的头指针和尾指针,新链表包含从start_ptr 到end_ptr的数据项(不包含end_ptr)
求思路和代码,怎么能在end_ptr 节点复制的时候停下来呢
我要复制一个链表_
void list_piece(const node* start_ptr, const node* end_ptr, node*& head_ptr, node*& tail_ptr)
start_ptr 和end_ptr 不是NULL
head_ptr tail_ptr 是新链表的头指针和尾指针,新链表包含从start_ptr 到end_ptr的数据项(不包含end_ptr)
求思路和代码,怎么能在end_ptr 节点复制的时候停下来呢
当不等于end_ptr 时就进行循环复制,当等于end_ptr 时停止循环并退出循环。