上一页 1 ··· 87 88 89 90 91 92 93 94 95 ··· 121 下一页
摘要: from:http://www.cnblogs.com/zhjp11/archive/2010/02/26/1674227.html今天看算法分析是,看到一个这样的问题,就是在一堆数据中查找到第k个大的值。 ... 阅读全文
posted @ 2012-07-18 10:52 wdliming 阅读(90) 评论(0) 推荐(0)
摘要: 摘自:http://blog.csdn.net/crazyjixiang/article/details/6720236#实现C/C++中的字符串操作函数是很练内功的,别看着这些函数很简单,自己实现起来,还是有许... 阅读全文
posted @ 2012-07-17 20:43 wdliming 阅读(151) 评论(0) 推荐(0)
摘要: 摘自:http://blog.csdn.net/crazyjixiang/article/details/6720236#实现C/C++中的字符串操作函数是很练内功的,别看着这些函数很简单,自己实现起来,还是有许... 阅读全文
posted @ 2012-07-17 20:43 wdliming 阅读(139) 评论(0) 推荐(0)
摘要: #include #include void UpperCase(char str[]){ int i=0; int len = strlen(str); for(i=0; i= 'a' && str[i] <=... 阅读全文
posted @ 2012-07-17 19:39 wdliming 阅读(250) 评论(0) 推荐(0)
摘要: #include #include void UpperCase(char str[]){ int i=0; int len = strlen(str); for(i=0; i= 'a' && str[i] <=... 阅读全文
posted @ 2012-07-17 19:39 wdliming 阅读(508) 评论(0) 推荐(0)
摘要: #include #include int main(void){ char *src = "LiMing"; int len = strlen(src); char *dest = (char*)mallo... 阅读全文
posted @ 2012-07-17 18:33 wdliming 阅读(104) 评论(0) 推荐(0)
摘要: #include #include int main(void){ char *src = "LiMing"; int len = strlen(src); char *dest = (char*)mallo... 阅读全文
posted @ 2012-07-17 18:33 wdliming 阅读(104) 评论(0) 推荐(0)
摘要: The ASCII codeAmerican Standard Code for Information InterchangeThe complete table of ASCII characters, co... 阅读全文
posted @ 2012-07-17 15:13 wdliming 阅读(225) 评论(0) 推荐(0)
摘要: The ASCII codeAmerican Standard Code for Information InterchangeThe complete table of ASCII characters, co... 阅读全文
posted @ 2012-07-17 15:13 wdliming 阅读(365) 评论(0) 推荐(0)
摘要: 单片机的特殊功能寄存器SFR,是SRAM地址已经确定的SRAM单元,在C语言环境下对其访问归纳起来有两种方法。1、采用标准C的强制类型转换和指针来实现采用标准C的强制转换和指针的概念来实现访问MCU的寄存器,例如... 阅读全文
posted @ 2012-07-16 16:52 wdliming 阅读(268) 评论(0) 推荐(0)
上一页 1 ··· 87 88 89 90 91 92 93 94 95 ··· 121 下一页