11 2017 档案

摘要:Web Audio API提供了一个简单强大的机制来实现控制web应用程序的音频内容。它允许你开发复杂的混音,音效,平移以及更多。 可以先看一下MDN的这篇文章《Web Audio API的运用》 https://developer.mozilla.org/zh-CN/docs/Web/API/We 阅读全文
posted @ 2017-11-30 22:16 Blue_Keroro 阅读(953) 评论(0) 推荐(0)
摘要:文章地址: https://developer.mozilla.org/zh-CN/docs/Learn/JavaScript/Objects/%E5%90%91%E2%80%9C%E5%BC%B9%E8%B7%B3%E7%90%83%E2%80%9D%E6%BC%94%E7%A4%BA%E7%A8 阅读全文
posted @ 2017-11-27 22:56 Blue_Keroro 阅读(210) 评论(0) 推荐(0)
摘要:转自:https://www.lijinma.com/blog/2014/05/29/amazing-xor/ 什么是异或? Wikipedia的解释: 在逻辑学中,逻辑算符异或(exclusive or)是对两个运算元的一种逻辑析取类型,符号为 XOR 或 EOR 或 ⊕(编程语言中常用^)。但与 阅读全文
posted @ 2017-11-11 21:10 Blue_Keroro 阅读(1010) 评论(0) 推荐(0)
摘要:1 #define SIZE 1000 //定义Hash table的初始大小 2 struct HashArray 3 { 4 int key; 5 int count; 6 struct HashArray* next; 7 }Hash[SIZE]; //主函数中需要初始化 8 void addHash(int num) ... 阅读全文
posted @ 2017-11-11 17:07 Blue_Keroro 阅读(1556) 评论(0) 推荐(0)
摘要:功能 功能 把格式化的数据写入某个字符缓冲区。 所需头文件 所需头文件 stdio.h 原型 原型 int sprintf( char *buffer, const char *format, [ argument] … ); 参数列表 参数列表 buffer:char型指针,指向将要写入的字符串的 阅读全文
posted @ 2017-11-09 21:28 Blue_Keroro 阅读(549) 评论(0) 推荐(0)
摘要:将《C程序设计(谭浩强著)》的快速排序样例做了小更改。 qsort()是编译器函数库自带的快速排序函数。 阅读全文
posted @ 2017-11-08 21:44 Blue_Keroro 阅读(368) 评论(0) 推荐(0)
摘要:时间限制:10000ms 单点时限:1000ms 内存限制:256MB 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 Little Hi gets lost in the city. He does not know where he is. He does not 阅读全文
posted @ 2017-11-01 16:33 Blue_Keroro 阅读(236) 评论(0) 推荐(0)