Xoá đầu DSLK
Anonymous
c_cpp
05/22/2021 12:06 PM
252 B
19
Indexable
// Xoá đầu DSLK
Node remove_begin(Node node) {
if(node == NULL) {
printf("\nKhong co gi de xoa!");
} else {
node = node->next;
}
return node;
}Editor is loading...