warhorse668

——机会更青睐有准备的人!

导航

11 2012 档案

摘要:Volume 1. Elementary Problem SolvingString401-Palindromes10010-Where's Waldorf?10361-Automatic Poetry537-Artificial Intelligence?409-Excuses, Excuses!10878-Decode the tape10815-Andy's First Dictionary644-Immediate Decodability10115-Automatic Editing 阅读全文

posted @ 2012-11-21 21:56 warhorse668 阅读(104) 评论(0) 推荐(0)

摘要:chapter-5 基础题目选解勇士Hashmat:UvaOJ—10055#include <stdio.h>int main(){ long long a,b; while(scanf("%lld%lld",&a,&b)==2) { if(a>b) printf("%lld\n",a-b); else printf("%lld\n",b-a); } return 0;}重温高中物理:UvaOJ—10071#include <stdio.h>int main(){ int v,t... 阅读全文

posted @ 2012-11-10 16:14 warhorse668 阅读(386) 评论(0) 推荐(0)

摘要:算法:acm,常见算法,需要能够快速编码c++:多态,STL(删除),虚函数操作系统:操作系统概念,csapp设计模式:《设计模式》计算机网络:tcp,udp,7层模型,4层模型数据库:B+Tree,sql语句常见大数据处理方式数据挖掘:《数据挖掘导论》 研究类岗位英语:项目介绍,自我介绍,公司看法,薪酬等常用口语 阅读全文

posted @ 2012-11-04 16:37 warhorse668 阅读(123) 评论(0) 推荐(0)

摘要:这几章主要复习c语言,这里仅列出一些上机练习中的有意思的题。2-9#include <stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%.*lf\n",c,1.0*a/b);}/*int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d.",a/b); int tmp=a%b; for(int i=0;i<c 阅读全文

posted @ 2012-11-01 23:36 warhorse668 阅读(133) 评论(0) 推荐(0)