1050题解(结构体数组与结构体指针的使用) 摘要:#include<stdio.h> #include<string.h> #define count_course 3 typedef struct { char num[…… 文章列表 2017年10月21日 5 点赞 0 评论 1536 浏览 评分:0.0
第三届阿里中间件性能挑战赛-总决赛亚军比赛攻略 摘要:初赛部分第一节 赛题重述及理解 题目主要是实现一个进程内消息引擎,程序主要分为两个阶段:第一阶段需要将输入的消息序列化,以topic和queue进行分类后存储到磁盘上;第二阶段需要将对应的…… 文章列表 2017年10月22日 4 点赞 1 评论 1262 浏览 评分:0.0
1052题解(链表操作) 摘要:#include<stdio.h> #include<stdlib.h> #include<string.h> //定义一个结点,可视为链表的最小单元,包括两要素:指针域和数据域 type…… 文章列表 2017年10月25日 1 点赞 0 评论 1087 浏览 评分:0.0
排序算法(选择,插入,冒泡) 摘要:#include<stdio.h> #define SWAP(x,y) {int t;t=x;x=y;y=t;} //选择排序法: /* 将要排序的对象最为两部分,一部分是已排序的,一…… 文章列表 2017年10月29日 6 点赞 0 评论 1196 浏览 评分:0.0
1134题解(求分析) 摘要://谁能分析一下这两种求值顺序对结果的影响 #include<stdio.h> #include<math.h> int main() { double pi = 0,i=1,tem…… 文章列表 2017年10月25日 2 点赞 0 评论 1269 浏览 评分:0.0
1231题解(注意理解“输入多个测试实例”) 摘要://注意题目要求:输入数据包含多个测试实例 #include <stdio.h> int Ytriangle(int n) { int i,j=1,index=0,num[50][50]…… 文章列表 2017年10月27日 4 点赞 0 评论 1243 浏览 评分:0.0
1162答案错误,为什么 摘要:#include <stdio.h> #include <string.h> int judge(char s[]) { int flage = 0,flage_A = 0,flage_…… 文章列表 2017年10月27日 3 点赞 0 评论 788 浏览 评分:0.0
1392题解(大数相加) 摘要:#include<stdio.h> #include<string.h> #include<math.h> #define IndexMax 1002 char* puqi(char num[…… 文章列表 2017年10月29日 2 点赞 0 评论 1035 浏览 评分:0.0
快速排序算法1 摘要:#include<stdio.h> #define SWAP(x,y) {int t;t=x;x=y;y=t;} #define N 10 /* 快速排序算法基本思想: 在数列中选择合适…… 文章列表 2017年11月02日 1 点赞 0 评论 1326 浏览 评分:0.0