上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 46 下一页
摘要: #include #include #include using namespace std;bool push_validate(int &pre_push, int max_push, int cur, vector& stack, int mcap) { if (pre_push >= ... 阅读全文
posted @ 2014-11-04 00:57 卖程序的小歪 阅读(252) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;class Number {public: int a; int b; int c; Number(int _a = 0, int _b = 0, int _c = 0): a(_a), b(_b),... 阅读全文
posted @ 2014-11-04 00:09 卖程序的小歪 阅读(473) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std;char tbl[5] = {'S', 'H', 'C', 'D', 'J'};void shuffle(vector &card, vector &rnd) { int rlen= rnd.size... 阅读全文
posted @ 2014-11-02 20:59 卖程序的小歪 阅读(242) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std;char line[82];char space[82];int main() { scanf("%s", line); int len = strlen(line); int side_... 阅读全文
posted @ 2014-11-02 20:13 卖程序的小歪 阅读(173) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std;char tbl[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A',... 阅读全文
posted @ 2014-11-02 19:56 卖程序的小歪 阅读(136) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std;int main() { int n = 0; cin>>n; getchar(); vector strs; for (int i=0; i= len) b... 阅读全文
posted @ 2014-10-31 22:23 卖程序的小歪 阅读(231) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std;class Stu { public: char name[12]; char id[12]; int grade; char... 阅读全文
posted @ 2014-10-31 21:24 卖程序的小歪 阅读(222) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std;void print(vector &num) { int len = num.size(); bool value_begin = false; for (int i=... 阅读全文
posted @ 2014-10-31 20:18 卖程序的小歪 阅读(199) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std;void print(int d[], int s, int e, const char* msg) { printf("%s\n", msg); if (s == e) { pr... 阅读全文
posted @ 2014-10-30 23:05 卖程序的小歪 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 坑这绝对是我碰计算机以来遇到的第一大坑!症状:在Linux主机上远程登录,执行一个简单的Oracle的JDBC连接程序(jar包),结果硬生生的卡在了连接建立验证阶段,然后等上几分钟后因为连接超时,连接被远端的Oracle服务器reset,于是报了connection reset exception... 阅读全文
posted @ 2014-10-28 01:40 卖程序的小歪 阅读(7017) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 46 下一页