Xoá đầu DSLK
unknown
c_cpp
5 years ago
187 B
11
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...