上一页 1 ··· 13 14 15 16 17
摘要: 好长时间没写啦,中间花了一段时间学习了一下数据结构的知识,因为我的专业并不学这个,想要在码农的路上走的更远,怕是自己还得多学一点呀;国庆去了一趟长沙张家界也耽误了一段时间,要不会更早完成的;本来这段小代码是想送给一个人玩的,结果懒得调试了也就不送了哈哈哈,被人家笑话,... 阅读全文
posted @ 2017-10-08 18:28 romaLzhih 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 啦啦啦在课上写代码就是爽,效率特别快!感觉在动手码之前不如简单的拿笔写一下思路,这样思路会很清晰,写起来也不会那么的费劲了。代码如下:#includeint n;const int N = 500;struct st{ int a, b, c; bool ... 阅读全文
posted @ 2017-09-11 15:21 romaLzhih 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 最后一点真的不想改了 , 烦,不过这次真的学到了很多东西 代码如下#include#include#includeint n; int main() { while (scanf_s("%d", &n)) { int x[4], mid; ... 阅读全文
posted @ 2017-09-09 13:32 romaLzhih 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 今天感觉良好,早早写完,但是貌似代码效率一般-。- 代码如下:#include#includevoid roll(char *a, char *b, char *c,char *d) { char k=*a; *a = *d; *d = *c; ... 阅读全文
posted @ 2017-09-08 00:29 romaLzhih 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 还是坏习惯,写完了没bug就不想调试了,希望可以正常运行,产生正常结果吧。#include#includeint b[8][2] = { { 1, 0 },{ 0, 1 },{ -1, 0 },{ 0, -1 },{ 1, 1 },{ 1, -1 },{ -1, 1 ... 阅读全文
posted @ 2017-09-07 01:30 romaLzhih 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 中途去了一趟北京,好几天没写代码了,今天瞎写了一段没跑代码#includeint main() { int m, n, a[9][9][2], i, j, count=0, x, y, k; char c[2]; scanf_s("%d%d", m,... 阅读全文
posted @ 2017-08-15 13:49 romaLzhih 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 阉割版 少了半边车马炮,没考虑马在边角的情况,没考虑吃子的情况 代码如下:#includestruct xinxi{ int che1, che2, ma1, ma2, pao1, pao2, bjiang1 = 3, bjiang2 = 3, rjiang1 ... 阅读全文
posted @ 2017-08-09 02:38 romaLzhih 阅读(118) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17