码迷,mamicode.com
首页 >  
搜索关键字:c compiler cannot cr    ( 8152个结果
64位matlab mex64位编译器解决方案
安装libsvm的时候用到了mex -setup,有的会报 Could not find the 64-bit compiler. This may indicate that the "X64 Compilers and Tools" or the Microsoft Windo...
分类:其他好文   时间:2014-05-24 03:59:31    阅读次数:387
找到链表的倒数第K位
#includeusing namespace std;class node{public: node():value(0),next(NULL){} ~node(){} int value; node* next;};///be careful this ;node* cr...
分类:其他好文   时间:2014-05-23 23:06:05    阅读次数:258
链表的增删(未考虑末尾)
#includeusing namespace std;class node{public: node():value(0),next(NULL){} ~node(){} int value; node* next;};///be careful this ;node* cr...
分类:其他好文   时间:2014-05-23 23:03:01    阅读次数:301
CCS5.5.0编译问题之” version of compiler版本不同”
编译警告:This project was created using a version of compiler that is not currently installed: 6.0.3 [C2000]. Another version of the compiler will be used...
分类:其他好文   时间:2014-05-23 12:16:21    阅读次数:3014
求链表的中心节点
#includeusing namespace std;class node{public: node():value(0),next(NULL){} ~node(){} int value; node* next;};///be careful this ;node* cr...
分类:其他好文   时间:2014-05-23 10:31:24    阅读次数:240
链表的递归运算
#includeusing namespace std;class node{public: node():value(0),next(NULL){} ~node(){} int value; node* next;};///be careful this ;node* cr...
分类:其他好文   时间:2014-05-23 10:28:09    阅读次数:250
逆序链表
#includeusing namespace std;class node{public: node():value(0),next(NULL){} ~node(){} int value; node* next;};///be careful this ;node* cr...
分类:其他好文   时间:2014-05-23 10:06:09    阅读次数:247
Compiler_词法分析_表驱动法
DFA: 使用了表驱动法; 构造的表如下: 表驱动 num . E +/- other 0 1 6 - - - 1 1 2 5 - - 2 2 - 3 - - 3 - - - 4 -- 4 5 - - - - 5 5...
分类:其他好文   时间:2014-05-18 09:11:43    阅读次数:264
57 利用sed处理windows和Unix文档中的行结束符
UNIX和DOS/Windows系统的纯文本格式的换行方式是不同的,基于DOS/Windows的文本文件在每一行末尾有一个CR(回车)和LF(换行),而UNIX文本只有一个换行。 如果想将一个Unix文本转换为Windows文本,可以使用如下的sed命令行 sed -e 's/$/\r/' myunix.txt > mywin.txt 在该脚本中,'$'规则表达式将与...
分类:Windows程序   时间:2014-05-18 05:11:41    阅读次数:432
asp.net如何抓取其他网站的内容
1. 需要引用的类库using System.Net;using System.IO;using System.Text;using System.Text.RegularExpressions;2. 获取其他网站网页内容的关键代码WebRequest request = WebRequest.Cr...
分类:Web程序   时间:2014-05-17 22:34:49    阅读次数:423
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!