
计算机基础知识
文章平均质量分 81
ASAP_Diablo
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
深入理解计算机系统--信息的表示和处理
程序的运行 hello.c:在计算机中中ASCII形式保存。而所有文件分为ASCII文件和二进制文件。 gcc程序通过以下流程,将hello.c转换为可执行目标程序: 预处理器cpp:扩展程序文本加入stdio.h形成hello.i–>编译器ccl:形成汇编程序hello.s–>汇编器as:形成可重定位二进制文件hello.o–>链接器ld:将printf.o与hello....原创 2018-04-29 21:19:44 · 299 阅读 · 0 评论 -
PageRank学习
PageRank Description PageRank是对搜索引擎搜索结果的排序算法,根据谷歌的描述: PageRank works by counting the number and quality of links to a page to determine a rough estimate of how important the website is. The under...原创 2018-07-03 16:54:34 · 772 阅读 · 0 评论