在驱动编程学习中,往往需要通过DbgPrint或者KdPrint来输出调试信息,对于Check版本,KdPrint只是DbgPrint的一个宏定义,而对于Free版本,KdPrint将被优化掉。这些输出信息可以通过DebugView对内核的监控来看到。KdPrintis
identical to t...
分类:
数据库 时间:
2014-05-01 11:08:32
阅读次数:
453
1A - Theatre
Square题意:有一个规模为n*m的剧院,用a*a的地板来铺满,问需要多少块木板。思路:水题。 1 #include 2 #include 3
#include 4 #include 5 #include 6 #include 7 #include 8 #define l...
分类:
其他好文 时间:
2014-05-01 09:33:16
阅读次数:
302
A. Theatre Square:
题目地址:http://codeforces.com/contest/1/problem/A
题目大意:n*m的长方形用a*a的正方形覆盖,允许超出长方形,问需要几个正方形。
算法讨论:计算长和宽分别需要几个a,相乘即可。
Code:
#include
#include
using...
分类:
其他好文 时间:
2014-04-30 22:15:39
阅读次数:
272
转载自:http://blog.csdn.net/onestep365/article/details/1897626#include #include
#include int main(){ char *str = (char *)malloc(100); strcpy(str, "hello"...
分类:
其他好文 时间:
2014-04-30 01:51:48
阅读次数:
427
Square Coins
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 7612 Accepted Submission(s): 5156
Problem Description
People in Sil...
分类:
其他好文 时间:
2014-04-29 13:38:21
阅读次数:
316
每种编程语言都有它的内存管理机制,比如简单的C有低级的内存管理基元,像malloc(),free()。同样我们在学习javascript的时候,很有必要了解javascript的内存管理机制。javascript的内存管理机制是:内存基元在变量(对象,字符串等等)创建时分配,然后在他们不再被使用时“...
分类:
Web程序 时间:
2014-04-29 11:14:47
阅读次数:
563
有一些数据类型是能够在 Core Foundation Framework 和 Foundation
Framework 之间交换使用的。这意味着,对于同一个数据类型,你既可以将其作为参数传入 Core Foundation 函数,也可以将其作为接收者对其发送
Objective-C 消息(即调用O...
分类:
移动开发 时间:
2014-04-29 10:22:46
阅读次数:
689
在C++ 的世界里,new 和delete 是关键字,而在C的世界里相对应的malloc和free是函数,关键C++的new和delete分析,详见前面的章节,这里就不在过多的介绍了。链接。
下面来研究下关于new 和delete的重载。
1、对比使用重载和未使用重载
未使用“/*File : operator_new.cpp
*Auth : sjin
*Date : 2014-04...
分类:
编程语言 时间:
2014-04-28 10:43:41
阅读次数:
406
1、一般gpio_request
封装了mem_request(),起保护作用,最后要调用mem_free之类的,主要是告诉内核这个地址被占用了。当其他地方调用同一地址gpio_request就会报告错误,改地址已被申请。在/proc/mem
可以看到有地址占用表描述。 这种用法的保护前提是大家都....
分类:
其他好文 时间:
2014-04-27 21:17:53
阅读次数:
834
The blocks in the city of Fishburg are of square form. N avenues running south to north and Mstreets running east to west bound them. A helicopter took off in the most southwestern
crossroads and fl...
分类:
其他好文 时间:
2014-04-27 21:16:59
阅读次数:
255