资料介绍
The word frequency counter, as previously implemented, takes several minutes to count the frequency of words in the author’s manuscript for this textbook on a Raspberry Pi. Most of the time
is spent building the list of words and re-sorting the list in order of word frequency. Most of the
time for both of these operations is spent in searching for the word in the list before incrementing its count or inserting it in the list. There are more efficient ways to build ordered lists of data.
Since the code is well modularized using an ADT, the internal mechanism of the list can be
modified without affecting the main program. A major improvement can be made by changing
the data structure from a linked list to a binary tree. Fig. 6.1 shows an example binary tree
storing word frequency counts. The time required to insert into a linked list is O(N), but the
time required to insert into a binary tree is O(log2 N)。 To give some perspective, the author’s
manuscript for this textbook contains about 125,000 words. Since log2(125,000) 《 17, we
would expect the linked list implementation to require about 125,000
17 ≈ 7353 times as long as a
binary tree implementation to process the author’s manuscript for this textbook. In reality,
- 慕课嵌入式系统(第五章.ARM汇编与C混合编程)
- GNU汇编入门教程免费下载 20次下载
- 微机的汇编语言及汇编程序设计学习课件免费下载 6次下载
- 汇编程序设计的教程课件免费下载 17次下载
- DSP设计与应用教程之汇编程序设计举例的资料说明 19次下载
- 单片机汇编语言程序设计的详细资料精讲 28次下载
- 51单片机汇编程序有哪些?51单片机汇编程序集详细资料免费下载 55次下载
- DSP汇编程序优化方法的探讨 5次下载
- 汇编语言学习课件_Windows汇编程序设计基础 0次下载
- AD和DA转换的c程序和对应的汇编程序 27次下载
- 汇编程序100例 95次下载
- GNU-ARM汇编
- 51 系列汇编程序设计的优化1
- ARM程序设计基础
- 汇编程序设计
- 使用Eclipse插件调试AT32系列芯片 2710次阅读
- 零基础学ARM:汇编伪指令、lds详解 2548次阅读
- 51单片机的汇编程序库 9414次阅读
- DS18B20和51单片机连接的汇编程序免费下载 4463次阅读
- 混合编程的基本方式, 在C51中嵌入汇编程序 9573次阅读
- 如何在c51程序中调用汇编函数 4105次阅读
- 怎么编写一个最简单的单片机程序? 3.6w次阅读
- 一分钟看懂51控制的MT8880双音频收发器的汇编程序及源代码 3027次阅读
- 基于51汇编语言的外部中断 3205次阅读
- C语言程序内存布局该关注哪些内容 878次阅读
- 拒绝开发板, 用 SkyEye 就可以模拟 ARM Linux! 1w次阅读
- 跑马灯实验用汇编语言和C51语言做出的不同效果 3714次阅读
- 单片机C语言程序设计:TIMER0与TIMER1控制条形LED 3846次阅读
- mips汇编语言程序设计实例 1.4w次阅读
- 单片机编程之汇编语言基础-常用指令和程序模式 1.5w次阅读
下载排行
本周
- 1TC358743XBG评估板参考手册
- 1.36 MB | 330次下载 | 免费
- 2开关电源基础知识
- 5.73 MB | 6次下载 | 免费
- 3100W短波放大电路图
- 0.05 MB | 4次下载 | 3 积分
- 4嵌入式linux-聊天程序设计
- 0.60 MB | 3次下载 | 免费
- 5基于FPGA的光纤通信系统的设计与实现
- 0.61 MB | 2次下载 | 免费
- 6基于FPGA的C8051F单片机开发板设计
- 0.70 MB | 2次下载 | 免费
- 751单片机窗帘控制器仿真程序
- 1.93 MB | 2次下载 | 免费
- 8基于51单片机的RGB调色灯程序仿真
- 0.86 MB | 2次下载 | 免费
本月
- 1OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 2555集成电路应用800例(新编版)
- 0.00 MB | 33564次下载 | 免费
- 3接口电路图大全
- 未知 | 30323次下载 | 免费
- 4开关电源设计实例指南
- 未知 | 21548次下载 | 免费
- 5电气工程师手册免费下载(新编第二版pdf电子书)
- 0.00 MB | 15349次下载 | 免费
- 6数字电路基础pdf(下载)
- 未知 | 13750次下载 | 免费
- 7电子制作实例集锦 下载
- 未知 | 8113次下载 | 免费
- 8《LED驱动电路设计》 温德尔著
- 0.00 MB | 6653次下载 | 免费
总榜
- 1matlab软件下载入口
- 未知 | 935054次下载 | 免费
- 2protel99se软件下载(可英文版转中文版)
- 78.1 MB | 537796次下载 | 免费
- 3MATLAB 7.1 下载 (含软件介绍)
- 未知 | 420026次下载 | 免费
- 4OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 5Altium DXP2002下载入口
- 未知 | 233046次下载 | 免费
- 6电路仿真软件multisim 10.0免费下载
- 340992 | 191185次下载 | 免费
- 7十天学会AVR单片机与C语言视频教程 下载
- 158M | 183278次下载 | 免费
- 8proe5.0野火版下载(中文版免费下载)
- 未知 | 138040次下载 | 免费
评论
查看更多