文章列表
排序算法(选择,插入,冒泡)
摘要:#include<stdio.h>
#define SWAP(x,y) {int t;t=x;x=y;y=t;}
//选择排序法:
/*
将要排序的对象最为两部分,一部分是已排序的,一……
1392题解(大数相加)
摘要:#include<stdio.h>
#include<string.h>
#include<math.h>
#define IndexMax 1002
char* puqi(char num[……
1162答案错误,为什么
摘要:#include <stdio.h>
#include <string.h>
int judge(char s[])
{
int flage = 0,flage_A = 0,flage_……
1231题解(注意理解“输入多个测试实例”)
摘要://注意题目要求:输入数据包含多个测试实例
#include <stdio.h>
int Ytriangle(int n)
{
int i,j=1,index=0,num[50][50]……
1134题解(求分析)
摘要://谁能分析一下这两种求值顺序对结果的影响
#include<stdio.h>
#include<math.h>
int main()
{
double pi = 0,i=1,tem……
1052题解(链表操作)
摘要:#include<stdio.h>
#include<stdlib.h>
#include<string.h>
//定义一个结点,可视为链表的最小单元,包括两要素:指针域和数据域
type……
第三届阿里中间件性能挑战赛-总决赛亚军比赛攻略
摘要:初赛部分第一节 赛题重述及理解 题目主要是实现一个进程内消息引擎,程序主要分为两个阶段:第一阶段需要将输入的消息序列化,以topic和queue进行分类后存储到磁盘上;第二阶段需要将对应的……
1118(求助_已解决)
摘要://此代码在visual studio上运行没问题,为什么在此平台上运行报错
#include <stdio.h>
#include <stdlib.h>
#include <string.h>……