上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 152 下一页
摘要: 源码例如以下: #include <stdlib.h> #include <stdio.h> typedef struct QUEUEnode* link; struct QUEUEnode{ int item ; link next; link head , tail; }; link NEW(i 阅读全文
posted @ 2017-07-03 15:11 cxchanpin 阅读(266) 评论(0) 推荐(0)
摘要: 暂无广告! 阅读全文
posted @ 2017-07-03 13:46 cxchanpin 阅读(91) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<string.h> int main() { char str[100],ch; int i,j,k; printf("please input a string:\n"); scanf("%s",&str); k = strlen(str); 阅读全文
posted @ 2017-07-03 13:09 cxchanpin 阅读(494) 评论(0) 推荐(0)
摘要: Description A magic island Geraldion, where Gerald lives, has its own currency system. It uses banknotes of several values. But the problem is, the sy 阅读全文
posted @ 2017-07-03 11:53 cxchanpin 阅读(172) 评论(0) 推荐(0)
摘要: 1)方法一 选中你要加凝视的内容,然后选择工具菜单“text|comment”就能够了,假设要把凝视变为语句,相同选中要转变的语句,然后用鼠标选择“text|uncomment”就能够了。用键盘的快捷键是"Ctrl+R". 或者选中你要加凝视的内容,右击鼠标选择“comment”, 假设要把凝视变为 阅读全文
posted @ 2017-07-03 11:16 cxchanpin 阅读(177) 评论(0) 推荐(0)
摘要: 0x01:简单介绍 Unity的脚本继承了Monobehaviour类,在脚本中定义函数: void FixedUpdate(){} void Update(){} void LateUpdate(){} 脚本假设是激活的,这三个函数会被上层逻辑每帧调用,FixedUpdate调用的次数和fixed 阅读全文
posted @ 2017-07-03 10:46 cxchanpin 阅读(1864) 评论(0) 推荐(0)
摘要: 似乎由于受这篇文章的影响 http://katemats.com/what-every-programmer-should-know-about-seo/ 于是我也觉得我应该写一个每一个程序猿必知之SEO。作为一个擅长前端兼SEO的设计师。搜索引擎是如何工作的假设你有时间,能够读一下谷歌的框架:ht 阅读全文
posted @ 2017-07-03 09:27 cxchanpin 阅读(215) 评论(0) 推荐(0)
摘要: Pow(x, n) Total Accepted: 25273 Total Submissions: 97470My Submissions Implement pow(x, n). 题意:求x的n次幂 思路:二分法 n有可能是负的或正的 当n为负是,pow(x, n) = 1/pow(x, -n) 阅读全文
posted @ 2017-07-03 08:10 cxchanpin 阅读(266) 评论(0) 推荐(0)
摘要: 1、 思想进步: 思想这个东西是个永久的话题啊!还记得刚进提高班的时候米老师讲自己从银行贷款买房子“借鸡下蛋”的故事,那时候感觉米老师的思想好‘值钱’啊!顿时感悟:养家糊口靠技术、发家致富靠思想! 这半年自己读了非常多书,说说几本对自己影响比較大吧:《王凤仪言行录》、《心态改变命运》、《穷爸爸富爸爸 阅读全文
posted @ 2017-07-02 20:27 cxchanpin 阅读(246) 评论(0) 推荐(0)
摘要: 昨天和赵崇说了一下工作的事情,说起了性能问题就讨论起了数据结果和指针对性能的影响。曾经一直没有想到这方面的事情,这几天专门抽时间回想一下这方面的知识,然后一点一点的总结一下,看看数据结构和指针在咱们代码中是怎样实现效率的提升的。 今天咱们先说一下指针。关于指针,在学C++的时候到时接触过指针。可是当 阅读全文
posted @ 2017-07-02 19:37 cxchanpin 阅读(3149) 评论(0) 推荐(0)
上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 152 下一页