示例#1
0
void PushTest() {
struct node* head = BuildTwoThree();// suppose this returns the list {2, 3}
Push(&head, 1); // note the &
Push(&head, 13);
// head is now the list {13, 1, 2, 3}
}
示例#2
0
文件: demo.c 项目: leechannl/learning
void PushTest(){
    struct node* head = BuildTwoThree();

    Push(&head, 1);
    Push(&head, 13);
}