摘要:
源码例如以下: #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)
浙公网安备 33010602011771号