用c语言实现stack的初始化,push,pop和Clear操作 #include<stdio.h> #include<stdlib.h> #include<assert.h> struct Link { int data; struct Link* Next; }; struct Stack { Read More
posted @ 2016-11-21 13:29 西瓜不懂柠檬的酸 Views(225) Comments(0) Diggs(0)
levels of contents