C基础
蜗牛崽
不放弃
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
结构可变数组
// 结构可变数组.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <stdio.h> #include <malloc.h> #include "array.h" /*开拓空间*/ **Array array_create(int init_size)** { Array a; a.size = init_size;原创 2016-07-28 23:08:43 · 425 阅读 · 0 评论 -
简单链表
#include "stdafx.h" #include "node.h" #include "malloc.h" int main() { Node * head = NULL; int number; do { scanf("%d", &number); if (number != -1) { // add to l原创 2016-07-29 22:58:44 · 243 阅读 · 0 评论
分享