- 博客(19)
- 收藏
- 关注
转载 语义网专家
—转载自这里(1)GruberGruber也有不少文章被SCI他引,不过最牛的还是大家最常见的这篇: T. R. Gruber. A Translation Approach to Portable Ontology Specifications. Knowled
2011-09-14 10:38:19
766
转载 语义网的红旗到底能打多久?
1) 语义网的头10年(2001-2011),是成功的10年,也是失败的10年。语义网的后一个10年,要强调实事求是、群众路线和“武装”斗争。2)语义网的头10年是成功的,因为10年前除了在少数专业领域(比如医学和生物),几乎没有对广大Web用户有价值的数据集的存在。在10年
2011-09-10 22:16:44
1707
转载 计算机权威杂志
◆ 权威期刊计 算 机 学 报中科院计算研究所软 件 学 报中科院软件研究所模式识别与人工智能中科院智能研究所计算机研究与发展中科院计算研究所自 动 化 学 报中科院自动化研究所
2011-09-09 09:53:44
1412
原创 C语言中定义和声明
1、怎样声明才可以使得变量能够在编译期间被恰当地声明?2、怎样安排声明才能使得所有的声明片段都可以在程序载入时被连接?3、声明怎么安排才能够只被复制一次?4、外部变量如何初始化?回答上述问题就涉及到变量在程序中的存在范围(scope),即那些函数可以访问到哪些变量
2011-09-07 17:00:04
511
原创 指针数组和指向指针的指针
这是C BIBLE书籍中的有关这一主题的代码。解决的是对于输入的字符串进行排序重新输出的问题。排序的依据是字母的顺序,如将asdc,排序后为acds。———————————————————————————————————————————————————————————————
2011-09-07 16:27:46
544
原创 续“计算器”——添加modulus运算
练习4-3 Given the basic framework ,it's straightfoward to extend the calculator .Add the modulus(%)operator and provisions for negative numver
2011-09-05 10:11:12
514
原创 逆波兰表达式思想下的计算器
K&R C Bible《C Programming Language》中采用reverse Polish notation思想的计算器代码:calc.h #define NUMBER '0'void push(double);double pop(void);
2011-09-03 21:57:18
390
转载 linux中文件和目录管理
Linux 文件和目录管理之列出、删除、复制、移动及改名 关于Linux 文件系统中路径的理解 Linux 文件类型 及文件的扩展名简述Linux 文件系统的目录结构Linux 文件系统概述
2011-08-30 15:17:32
489
原创 Exercise 2-3
Write a function htoi(s),which converts s string of hexadecimal digits(including an optional 0x or 0X) into its equivalent of interger value
2011-08-11 13:47:19
595
原创 exercise2-1
Write a program to determine the ranges of char,short,int,and long variables,both singed and unsinged.by printing appropiate values from sta
2011-08-11 11:37:04
418
原创 exercise1-18
Write a program to remove trailing blanks and tabs from each line of input,and to delete entirely blank lines.1、各种常用键的ASCII码值是多少,参见网页:查看常用
2011-08-09 13:59:07
318
原创 exercise1-16
Revise the main routine of the longest-line program so it will correctly print the length of arbitrarily long input lines,and as much as po
2011-08-09 12:23:35
406
原创 exercise1-19
#include#define MAXLINE 1000void reversed(char s[]);int getlines(char line[],int maxline);/*print the reversed of the input
2011-08-08 17:35:05
338
原创 exercise1-17
exercise1-17: Write a program to print all input lines that are longer than 80 characters.#include#define MAXLINE 1000#define LIMIT 80
2011-08-08 16:01:48
575
原创 库文件中getline函数的声明已经存在
/usr/include/stdio.h:651: note: previous declaration of ‘getline’ was here#include#define MAXLINE 1000 /*maxinum input line size*/int
2011-08-08 13:16:41
2320
原创 EOF续
程序如下:#include /*count characters in input */main(){ long nc; nc = 0; while(getchar() != EOF) ++ nc; printf("%ld\n", nc
2011-07-28 15:17:07
441
原创 关于C语言中的EOF
程序如下: #include/*copy input to the output *?main(){ int c; while((c = getchar()) != EOF) putchar(c);}在linux之ubuntu下运行时,
2011-07-27 17:25:47
710
原创 printf复习(转载)
printf 格式输出关键词: printf 格式代码AABCABCDEFGH%SAABCABCDEFGH%5S####A##ABCABCDEFGH%.5SAABCABCDE%5.5S####A##ABCABCDE%-5SA####ABC##ABCDEFGHPrintf 格式化字
2011-07-26 11:26:44
361
原创 gcc学习(1)——第一个C程序
这么晚才来学习GCC,实在是惭愧。俗话说的好:Better late than never。那么为了自己能够学得扎实些,就尽可能记录下学习过程中的收获和疑问。 一般第一个程序总是hello world,在此不脱俗地承袭这一惯例。主要是为了学习linux下最强大的编辑器
2011-07-26 10:35:15
562
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人