会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
UEW
博客园
|
首页
|
新随笔
|
新文章
|
联系
|
订阅
|
管理
上一页
1
2
3
4
下一页
2019年3月25日
css
摘要: Document 学号姓名 首页 心情日记 Free 一起走到 从明天起 ...
阅读全文
posted @ 2019-03-25 15:06 UEW
阅读(364)
评论(0)
推荐(0)
2019年3月24日
顺序栈代码实现&&stack库
摘要: #include using namespace std; const int N=100; typedef int Elemtype; struct SqStack { Elemtype *base; int top; void Init(); void clear(); bool Empty(); void Push(Elemtyp...
阅读全文
posted @ 2019-03-24 15:56 UEW
阅读(234)
评论(0)
推荐(0)
2019年3月21日
大菲波数
摘要: Problem Description Fibonacci数列,定义如下:f(1)=f(2)=1,f(n)=f(n-1)+f(n-2) n>=3;计算第n项Fibonacci数值。Input输入第一行为一个整数N,接下来N行为整数m(1<=m<=1000)。Output输出为N行,每行为对应的f(m
阅读全文
posted @ 2019-03-21 17:33 UEW
阅读(398)
评论(0)
推荐(0)
CSS
摘要: 合并边框:table{border: 2px red solid;border-collapse: collapse;} 隔行变色: 奇数行:table tr:nth-child(odd) { background-color:gray; } table tr:nth-child(even) { b
阅读全文
posted @ 2019-03-21 16:35 UEW
阅读(144)
评论(0)
推荐(0)
1
摘要: #include<iostream>#include<list>#include<string>using namespace std; list<int> BigAddList(list<int> La,list<int> Lb ){ list<int> Lc; list<int> ::itera
阅读全文
posted @ 2019-03-21 15:43 UEW
阅读(184)
评论(0)
推荐(0)
2019年3月15日
list实现大整数加法
摘要: #include #include #include using namespace std; list BigAddList(list La,list Lb ) { list Lc; list ::iterator it1,it2; it1=La.begin(); it2=Lb.begin(); int carry=0; while...
阅读全文
posted @ 2019-03-15 11:17 UEW
阅读(415)
评论(0)
推荐(0)
list基本代码
摘要: #include #include //STL之list的基本用法 using namespace std; void outputList(list lst)//it=head->next;it!=NULLL;it=it->next; { list::iterator it;////LNode *it for(it=lst.begin();it!=lst.end()...
阅读全文
posted @ 2019-03-15 10:56 UEW
阅读(371)
评论(0)
推荐(0)
2019年3月13日
线性表的表现与实现
摘要: #include using namespace std; typedef int ElemType; struct LNode { ElemType data; LNode *next; }; struct LinkList { LNode *head; void Init(); void Create(int n); void Cle...
阅读全文
posted @ 2019-03-13 12:35 UEW
阅读(214)
评论(0)
推荐(0)
2019年3月12日
顺序表实现代码
摘要: #include<iostream>using namespace std;
阅读全文
posted @ 2019-03-12 10:37 UEW
阅读(807)
评论(0)
推荐(0)
2019年3月11日
html
摘要: http://106.14.209.83/16136204/exp1/index.htmlhttp://106.14.209.83/16136207/%E5%AE%9E%E9%AA%8C%E4%B8%80/intro.htmlhttp://106.14.209.83/16136207/%E5%AE%
阅读全文
posted @ 2019-03-11 10:08 UEW
阅读(188)
评论(0)
推荐(0)
上一页
1
2
3
4
下一页
公告