摘要:
题目1 : Visiting Peking University时间限制:1000ms单点时限:1000ms内存限制:256MB描述Ming is going to travel for n days and the date of these dayscan be ... 阅读全文
摘要:
#include #include typedef int ElemType;typedef struct LNode //定义单链表结点类型{ ElemType data; struct LNode *next; //指向后继结点}... 阅读全文
摘要:
欧几里德算法 欧几里德算法又称辗转相除... 阅读全文
摘要:
POJ1006BiorhythmsTime Limit: 1000MS Memory Limit: 10000KTotal Submissions: 139159 Accepted: 44664DescriptionSome people believe that t... 阅读全文
摘要:
void Deletemax(List *l){ List *p=L->next,*pre=L,*maxp=p,maxpre=L; while(p) { if(maxp->numnum) { maxp... 阅读全文
摘要:
/*copyright (t) 2017,烟台大学计算机学院*All rights reserved.*文件名称:1.cpp*作者:邵雪源*完成日期:2017年9月19日*版本号:v1.0*问题描述:用函数实现顺序表的10个基本运算(见下),并用main函数完成调试工... 阅读全文
摘要:
/* copyright (t) 2016,烟台大学计算机学院 *All rights reserved. *文件名称:1.cpp *作者:邵雪源*完成日期:2017年9月19日 *版本号:v1.0 *问题描述:将所在奇数移到所有偶数的前面,要求算法的时间复杂度为O(... 阅读全文
摘要:
/* *Copyright (c) 2017,烟台大学计算机与控制工程学院 *All rights reserved. *文件名称: 拆分单链表 叙述: 拆分单链表,有一个带头节点的单链表L={a1,b1,a2,b2.....an,bn}用算... 阅读全文