会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
敲代码的冯林林
下手处是自强不息,成就处是至诚无息!!!
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
2015年4月4日
单链表的删除操作的实现(0953)swust-oj
摘要: #include#includeint total;typedef struct node{ int data; struct node * next;}Node;void CreateNode(Node *&L,int a[],int n)//尾插法建立单链表{ int i; Node *p,*r...
阅读全文
posted @ 2015-04-04 20:38 殇林
阅读(425)
评论(0)
推荐(0)
编辑
2015年4月3日
链表的创建 (初学)
摘要: #include#includetypedef struct node{ int data; struct node * next;}*P_node,node;P_node CreateNode(int x)//开辟节点,创建节点{ P_node q=(P_node)malloc(sizeof(no...
阅读全文
posted @ 2015-04-03 19:53 殇林
阅读(246)
评论(0)
推荐(0)
编辑
2015年3月17日
C++中引用(&)的用法和应用实例
摘要: 出处复制的
阅读全文
posted @ 2015-03-17 12:58 殇林
阅读(84)
评论(0)
推荐(0)
编辑
2015年3月14日
A+B
摘要: 题目描述:Calculate a+bDescriptionTwo integer a,b (0int main(){inta,b;while(scanf("%d%d",&a,&b)!=EOF){printf("%d\n",a+b);}return 0;}
阅读全文
posted @ 2015-03-14 14:38 殇林
阅读(126)
评论(0)
推荐(0)
编辑
上一页
1
2
3
公告