• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






流云Ol

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2016年12月27日

词频统计
摘要: #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX 27 //26个字母和'//字典树的结构体定义typedef struct Word { Word *next[MAX];//数组下标0-25代表小写字母,2 阅读全文
posted @ 2016-12-27 11:31 流云Ol 阅读(163) 评论(0) 推荐(0)
 
四则运算
摘要: #include <stdio.h>#include <stdlib.h>#include <time.h>//函数原型int getChoice();void showMenu();void doExercise(int);int test(int);/* 功能:用户选择功能 返回:用户的功能选择 阅读全文
posted @ 2016-12-27 10:48 流云Ol 阅读(123) 评论(0) 推荐(0)