• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
爱白菜的小昆虫
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页
2016年12月14日
双端链表 冒泡排序 有头结点
摘要: 1 #include 2 #include 3 #include 4 5 typedef char * ElemType; 6 7 typedef struct DuLNode { 8 ElemType data; 9 struct DuLNode *prior, *next; 10 } DuLNode, *DuLinkList; 11 12 13... 阅读全文
posted @ 2016-12-14 14:07 爱白菜的小昆虫 阅读(321) 评论(0) 推荐(0)
双端链表 冒泡排序
摘要: 测试数据 109只小昆虫8只小昆虫7只小昆虫6只小昆虫5只小昆虫4只小昆虫3只小昆虫2只小昆虫1只小昆虫0只小昆虫 阅读全文
posted @ 2016-12-14 01:47 爱白菜的小昆虫 阅读(437) 评论(0) 推荐(0)
2016年12月11日
C/C++ 结构体 指针 函数传递
摘要: 1 #include 2 #include 3 4 struct student{ 5 int num; 6 char str[20]; 7 double dec; 8 }; 9 10 void scan(struct student *stu[], int *n){ 11 scanf("%d", n); 12 *stu ... 阅读全文
posted @ 2016-12-11 18:12 爱白菜的小昆虫 阅读(752) 评论(0) 推荐(0)
C/C++ 结构体 指针 简单输入输出
摘要: 1 #include 2 #include 3 4 struct student{ 5 int num; 6 char str[20]; 7 double dec; 8 }; 9 10 int main(){ 11 int n; 12 struct student *stu; 13 14 scanf("%d", &n);... 阅读全文
posted @ 2016-12-11 14:06 爱白菜的小昆虫 阅读(3307) 评论(0) 推荐(0)
C/C++ 结构体 数组 函数传递
摘要: 1 #include 2 #include 3 4 struct student{ 5 int num; 6 char str[20]; 7 double dec; 8 }; 9 10 void scan(struct student stu[], int *n){ 11 scanf("%d", n); 12 for(int i ... 阅读全文
posted @ 2016-12-11 13:58 爱白菜的小昆虫 阅读(5592) 评论(3) 推荐(0)
C/C++ 结构体 数组 简单输入输出
摘要: 1 #include 2 #include 3 4 struct student{ 5 int num; 6 char str[20]; 7 double dec; 8 }; 9 10 11 int main(){ 12 13 int n; 14 struct student stu[10]; 15 16 s... 阅读全文
posted @ 2016-12-11 13:54 爱白菜的小昆虫 阅读(18180) 评论(0) 推荐(0)
C/C++ 结构体 函数传递
摘要: 1 #include 2 #include 3 4 struct student{ 5 int num; 6 char str[20]; 7 double dec; 8 }; 9 10 void scan(struct student *stu){ 11 // scanf("%d%s%lf", &stu->num, stu->str, &s... 阅读全文
posted @ 2016-12-11 03:56 爱白菜的小昆虫 阅读(1468) 评论(0) 推荐(0)
C/C++ 结构体 简单输入输出
摘要: 1 #include 2 #include 3 4 struct student{ 5 int num; 6 char str[20]; 7 double dec; 8 }; 9 10 11 int main(){ 12 13 struct student stu; 14 15 scanf("%d%s%lf", &s... 阅读全文
posted @ 2016-12-11 02:54 爱白菜的小昆虫 阅读(3384) 评论(0) 推荐(0)
2016年12月8日
c/c++ 指针理解(1)
摘要: 指针是一个变量,存放变量的地址 阅读全文
posted @ 2016-12-08 15:49 爱白菜的小昆虫 阅读(188) 评论(0) 推荐(0)
2016年12月5日
C 宏定义 理解(1)
摘要: 阅读全文
posted @ 2016-12-05 21:07 爱白菜的小昆虫 阅读(141) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3