[福利活动]加入最强题解计划 摘要:众所周知,参加ACM蓝桥杯,打比赛是一个长期刷题训练的过程,对于一名学编程的同学,题解的优劣程度影响甚至会超过一本教材!故此,依托C语言网,原题解博客社区现独立上线blog.dotcpp.com,将致…… 文章列表 2019年12月24日 0 点赞 1 评论 894 浏览 评分:9.1
1050自用代码 摘要:### 1050代码自用 ``` #include struct student { char num[10]; char name[10]; int score…… 文章列表 2019年12月18日 0 点赞 0 评论 391 浏览 评分:9.9
最长公共子序列 摘要:##最长公共子序列总结(动态规划) 今天主要对最长公共子序列做一些小小的总结。 前面讲过最长子序列问题的算法,主要在于递推公式,最长公共子序列同样也是具备类似的递推公式,大家大可将其在理解的基…… 文章列表 2019年12月17日 0 点赞 0 评论 359 浏览 评分:9.9
最长上升子序列(动态规划) 摘要:##最长上升子序列 最长上升子序列意思是,在一个数组中,找出上升单元的最大长度。 举个例子: 1 7 3 5 4 7 6 8 10 它的上升子序列长度为:1 3 4 6 8 10,…… 文章列表 2019年12月16日 0 点赞 0 评论 449 浏览 评分:9.9
1033 题 ,我写的错%50,如何优化呢?? 摘要:#include #include using namespace std; int main() { char c; int i,n; char a[5],b[5]; …… 文章列表 2019年12月16日 0 点赞 1 评论 219 浏览 评分:0.0
1031 为什么输出超限??? 摘要:#include using namespace std; int inverseAraay(int n) { int i; char a[n]; for(int i=0;i>a[…… 文章列表 2019年12月16日 0 点赞 0 评论 386 浏览 评分:0.0
1027 为啥错误?? 摘要:#include using namespace std; int m,n; int MaxGB(int m,int n) { int R=1; if(m>n) { while(R!…… 文章列表 2019年12月15日 0 点赞 0 评论 404 浏览 评分:0.0
区间调度问题的贪心策略 摘要:感觉很久没正儿八经的写博客了,所以今天打算开始写一篇,今天准备的话题是区间调度问题的贪心策略 ------------ 贪心策略的原理不难,但是要想构思出一个正确无误的策略并不是很容易…… 文章列表 2019年12月14日 0 点赞 0 评论 439 浏览 评分:9.9
1024题,运行错误? 错误在哪呢? 摘要:#include using namespace std; int main() { int i,j,n,sum=0; //cin>>n; int a[2][2]; fo…… 文章列表 2019年12月14日 0 点赞 0 评论 336 浏览 评分:8.0
1012为什么时间超限????? 摘要: #include using namespace std; int main() { char c; int cNum=0; int bkNum=0; i…… 文章列表 2019年12月13日 0 点赞 0 评论 403 浏览 评分:0.0