摘要: 原文地址:谈谈对攻读计算机研究生的看法 如果你有实际开发工作经验,感觉自己的水平和实力进入了一个高原期,迫切需要从理论上提高,那么计算机学院是唯一选择。因为计算机学院才能让你在理论上更上一层楼。软件学院从教学计划上就没有把你往这方面带。当然能不能更上一层楼最终还是完全取决于你自己。需要特别说明的是,工作经验并不一定等于开发经验,我见过很多工作2-3年的人,但是没有一点开发经验。 你说:“他们都有很强的开发能力,只是不太喜欢读书,也只是希望混个学历对今后在岗位上晋升有好处”,我可以向你保证,你所说的人绝对不是开发能力很强的人。因为,1)高手不可能不喜欢读书;2)高手不可能想去混一个学历... 阅读全文
posted @ 2012-08-01 16:42 Marshalkk 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 近期做杭电题,就从网上搜了相关的题目分类的日志,具体正确与否,不清楚!来源:http://hi.baidu.com/%D5%D4%B7%F6%B7%E7/blog/item/f97e4680830cbbc09123d929.html=======================================================================Math_基础题:1000、1037、1089、1090、1091、1095、1170、1283、Math_求和:1001、1008、1012、1056、1092、1093、1094、1096、1202、1302、Math_最 阅读全文
posted @ 2012-08-01 13:33 Marshalkk 阅读(3855) 评论(0) 推荐(0) 编辑
摘要: 目录:一、引入二、经历了就能理解三、读书要分级四、只读经典五、别吝惜你动笔的那点时间一、引入 看到这个题目的时候你可能会感到有点好笑:“这还用问,看书就是把书看了一遍呗..” 没错,我们从小到大就是这样想的,也是这样看书的,信手拈来一本叫作"书"的东西,从头到尾就开看了!随时年龄的增长,我们的“阅历”也多了起来了,但你是不是也有和我一样的感觉——书是读了不少,真正入脑的,能融入自己思想的内容却少之又少,而且随着年头的增加,你越来越不记得自己读过这些书,更不用提书里到底大概是些什么内容了!这就是我们的长久以来的读书方式。。。 你会不会也这样想,如果我能把我从小到大读过的书都能 阅读全文
posted @ 2012-08-01 13:12 Marshalkk 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2035#include <cstdlib>#include <iostream>#include <math.h>using namespace std;int main(int argc, char *argv[]){ int A,B; while(cin>>A>>B) { int sum=1; if(A==0&&B==0) break; for(int i=0;i<B;i++) { sum=sum*A%100... 阅读全文
posted @ 2012-08-01 11:16 Marshalkk 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2034#include <cstdlib>#include <iostream>using namespace std;int main(int argc, char *argv[]){ int m,n; int A[100]={0},B[100]={0}; while(cin>>m>>n) { int t,flag=0; if(m==0&&n==0) break; for(int i=0;i<m;i++) cin>> 阅读全文
posted @ 2012-08-01 10:39 Marshalkk 阅读(938) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2033#include <cstdlib>#include <iostream>using namespace std;int main(int argc, char *argv[]){ int n,residue,quotient; int sum[3]={0},Time[6]={0}; cin>>n; while(n--) { for(int i=0;i<6;i++) { cin>>Time[i]; } sum[... 阅读全文
posted @ 2012-07-31 15:52 Marshalkk 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2032做该题时,开始就给出Presentation Error( 程序总体正确,但是输出格式不符合要求!注意程序中的空格、空行)开始的代码:#include <cstdlib>#include <iostream>using namespace std;int main(int argc, char *argv[]){ int n; int Array[31][31]={0}; while(cin>>n) { for(int i=1;i<=n;i++) {. 阅读全文
posted @ 2012-07-31 14:44 Marshalkk 阅读(401) 评论(0) 推荐(0) 编辑
摘要: Status里面的各个状态是什么意思?A: 各状态含义如下: Queuing: 等待评判. Accepted (AC): 恭喜,程序完全符合要求! Presentation Error (PE): 程序总体正确,但是输出格式不符合要求!注意程序中的空格、空行。 Wrong Answer (WA): 输出的答案错了。偶尔,Presentation Error 也会被归类到这个情况,这取决于你的输出。Runtime Error (RE): 程序在运行的过程中出错了,也许是栈溢出、非法指针访问、浮点错误、整数除0。。。 通常会包含一些额外的信息如下: SIGSEGV --- 段错误,通常是栈溢出.. 阅读全文
posted @ 2012-07-31 14:21 Marshalkk 阅读(1482) 评论(0) 推荐(0) 编辑
摘要: #include <cstdlib>#include <iostream>#include <math.h> using namespace std;int main(int argc, char *argv[]){ int n,r; int Remainder[100]={0}; while(cin>>n>>r) { int flag=0,t=n,k=0,Quotient=n; if(n>=0&&n<=r) cout<<n<<endl; if(n>r) { while(Quo 阅读全文
posted @ 2012-07-31 11:08 Marshalkk 阅读(406) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h"int main(int argc, char* argv[]){ int index,sum; char c; scanf("%d",&index); getchar(); while (index--) { sum =0 ; while ( (c= getchar())!= '\n') { if (c < 0 ) sum++; } printf("%d\n",sum/2); } return 0;}以上是转的别人的代码!可以AC过去!#include <cst 阅读全文
posted @ 2012-07-30 13:46 Marshalkk 阅读(1452) 评论(1) 推荐(0) 编辑