浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 212 213 214 215 216 217 218 219 220 ··· 630 下一页

2013年1月24日

摘要: Dia a drawing programWelcome to Dia's old homepage. A more dynamic version is available as wiki at http://live.gnome.org/DiaDia is a gtk+ based diagram creation program released under the GPL license.... 阅读全文
posted @ 2013-01-24 16:10 lexus 阅读(237) 评论(0) 推荐(0)

摘要: JeffChen » C primer笔记C primer笔记2011年12月7日 jeffchen1. 对指针加1,等于对指针的值加上它指向的对象的字节的大小 2. date+2 =&date[2] *(date+2) = date[2]3. 函数原型或者函数定义头,可以用int * ar 代替int ar[ ] int sum(int ar[],int n) int sum(int * ar,... 阅读全文
posted @ 2013-01-24 16:05 lexus 阅读(354) 评论(3) 推荐(0)

摘要: JeffChen » C语言常用宏定义技巧C语言常用宏定义技巧2011年11月28日 jeffchen1. 防止一个头文件被重复包含 #ifndef COMDEF_H #define COMDEF_H2. 重新定义一些类型,防止由于各种平台和编译器的不同,而产生的类型字节数差异,方便移植 typedef unsigned long int uint32; /* Unsigned 32... 阅读全文
posted @ 2013-01-24 16:03 lexus 阅读(216) 评论(0) 推荐(0)

摘要: 《滚雪球:巴菲特和他的财富人生》(The Snowball:Warren Buffett and the Business of Life)[PDF] - VeryCD电驴大全The Snowball:Warren Buffett and the Business of Life 阅读全文
posted @ 2013-01-24 16:01 lexus 阅读(612) 评论(0) 推荐(0)

摘要: Linux and Programming Cheat SheetsThe author is Chris McKenzie; a programmer dedicated to truth, no matter how crazy it gets. Check out his projects on github. 阅读全文
posted @ 2013-01-24 15:59 lexus 阅读(190) 评论(0) 推荐(0)

摘要: Learning through pain, practice, and patience 阅读全文
posted @ 2013-01-24 15:56 lexus 阅读(159) 评论(0) 推荐(0)

摘要: SnowballSnowball is a small string processing language designed for creating stemming algorithms for use in Information Retrieval. This site describes Snowball, and presents several useful stemmers wh... 阅读全文
posted @ 2013-01-24 15:43 lexus 阅读(252) 评论(0) 推荐(0)

摘要: SnowballSnowball is a small string processing language designed for creating stemming algorithms for use in Information Retrieval. This site describes Snowball, and presents several useful stemmers wh... 阅读全文
posted @ 2013-01-24 15:40 lexus 阅读(263) 评论(0) 推荐(0)

摘要: Document classification - Wikipedia, the free encyclopediaDocument classification From Wikipedia, the free encyclopedia Jump to: navigation, search Document classification or document categ... 阅读全文
posted @ 2013-01-24 15:36 lexus 阅读(328) 评论(0) 推荐(0)

摘要: 波特词干算法 - 残阳似血的博客波特词干The English (Porter2) stemming algorithmThe English (Porter2) stemming algorithmLinks to resources Snowball main page The stemmer in Snowball The ANSI C stemmer — and its header Sa... 阅读全文
posted @ 2013-01-24 15:16 lexus 阅读(430) 评论(0) 推荐(0)

摘要: 波特词干算法 - 残阳似血的博客波特词干算法 阅读全文
posted @ 2013-01-24 14:44 lexus 阅读(229) 评论(0) 推荐(0)

摘要: JeffChen » 堆,栈,Vector存储类型,拷贝构造函数等堆,栈,Vector存储类型,拷贝构造函数等2012年8月7日 jeffchen 发表评论 阅读评论下面四段示例程序可以说明以下概念:栈,堆, vector如何push_back, vector为什么存对象而最好不要存储指针. 对照这四段程序的输出,应该能清晰的理解以上区别.#include "stdafx.h" #include<... 阅读全文
posted @ 2013-01-24 14:34 lexus 阅读(502) 评论(0) 推荐(0)

摘要: FUZZ测试方法介绍 - tester的日志 - 网易博客FUZZ测试方法介绍 2011-07-18 14:43:52|分类: 测试思想 |标签: |字号大中小订阅Fuzz这个名词来自于Professor Barton Miller。在1989年一个风雨交加的夜晚,他登陆一台自己的主机,不知道怎么回事,信号通过猫传到主机上,雷电一闪,把里面的高位变低位,低位至高位了,结果到了主机以后改变了。他突... 阅读全文
posted @ 2013-01-24 14:32 lexus 阅读(19101) 评论(0) 推荐(0)

摘要: JeffChen » C++技术相关链接整理C++技术相关链接整理2012年9月29日 jeffchen 发表评论 阅读评论MSDN,Windows的C++开发手册http://msdn.microsoft.com/en-us/library/cscc687y(v%7B%7B=vs.110).aspxGNU的C++手册http://gcc.gnu.org/onlinedocs/libstdc++/... 阅读全文
posted @ 2013-01-24 14:29 lexus 阅读(180) 评论(0) 推荐(0)

摘要: JeffChensplit函数的实现2013年1月17日 jeffchen 2 条评论前几天朋友问我要几道C++面试题,我说你让他先写一个string的split函数吧,类似C语言里的strtok. 现在想想自己的代码里,split函数的实现真是兴之所至,想到用什么方法就用什么方法:一种方法是用stringstream,然后用getline:void split(const std::string... 阅读全文
posted @ 2013-01-24 14:25 lexus 阅读(364) 评论(0) 推荐(0)

摘要: 首页_百度空间Linux下快速清空文件内容的三种方法http://blog.csdn.net/linglongwunv/article/details/52127001、#echo"">test.txt(文件大小被截为1字节)2、#>test.txt(文件大小被截为0字节)3、#cat/dev/null>test.txt(文件大小被截为0字节) 阅读全文
posted @ 2013-01-24 13:35 lexus 阅读(232) 评论(0) 推荐(0)

摘要: C++轻量级可配置语法分析器(开源) - λ-calculus(惊愕到手了欧耶,GetBlogPostIds.aspx) - C++博客C++轻量级可配置语法分析器(开源) 这个分析器包含了四个文件: VL_Data_Basic.h(使用了其中的智能指针VL_AutoPtr和一些类型重命名) VL_CpData.h(数据结构) VL_CpKernel.h/cpp(词法分析器和语法分析器) 昨天刚写... 阅读全文
posted @ 2013-01-24 13:17 lexus 阅读(630) 评论(0) 推荐(0)

摘要: 用lambda对std::list排序 - 力为的技术博客 - C++博客用lambda对std::list排序std::list提供了两个排序方法:std::list::sort() 和std::list::sort(_Pr3 _Pred)。std::list::sort(_Pr3 _Pred)需要提供一个函数对象(仿函数)作为参数。构造函数有多种方式,lambda表达式算是最复合潮流的一种。比... 阅读全文
posted @ 2013-01-24 13:13 lexus 阅读(747) 评论(0) 推荐(0)

摘要: warning: deprecated conversion from string constant to ‘char*’ - 日月光明的日志 - 网易博客warning: deprecated conversion from string constant to ‘char*’ 2008-03-04 10:51:27|分类: 默认分类 |标签: |字号大中小订阅... 阅读全文
posted @ 2013-01-24 11:50 lexus 阅读(207) 评论(0) 推荐(0)

摘要: [转载+总结]关于C++中文字符的处理 - absolute - 博客园关于C++中文字符的处理 很不错的文章,最近栽在这上面了,转来收藏下,修改了一些小问题。 首先谈谈我的问题,对于非宽字符的字符串string,如果有汉字,那么如何获取汉字字符呢?直接用索引的话只能获取单字节,因此需要处理下,方法如下: wchar_t word = *(wchar_t*)(&(mystring[j])); ... 阅读全文
posted @ 2013-01-24 11:30 lexus 阅读(371) 评论(0) 推荐(0)

上一页 1 ··· 212 213 214 215 216 217 218 219 220 ··· 630 下一页