go语言之给定英语文章统计单词数量(go语言小练习)
来源:脚本之家
2023-01-07 12:01:23
0浏览
收藏
对于一个Golang开发者来说,牢固扎实的基础是十分重要的,golang学习网就来带大家一点点的掌握基础知识点。今天本篇文章带大家了解《go语言之给定英语文章统计单词数量(go语言小练习)》,主要介绍了单词、数量、go统计,希望对大家的知识积累有所帮助,快点收藏起来吧,否则需要时就找不到了!
给定一篇英语文章,要求统计出所有单词的个数,并按一定次序输出。思路是利用go语言的map类型,以每个单词作为关键字存储数量信息,代码实现如下:
package main
import ( "fmt" "sort" ) func wordCounterV1(str string) { /*定义变量*/ stringSlice := str[:] temp := str[:] wordStatistic := make(map[string]int) /*把所有出现的单词放入map中*/ j := 0 for i := 0; i = 65 && stringSlice[i] = 97 && stringSlice[i] 1 { if (i[0] >= 65 && i[0] = 90) { strTemp := make([]byte, len(i), len(i)) copy(strTemp, i) strTemp[0] += 32 wordStatistic[string(strTemp)] += wordStatistic[i] delete(wordStatistic, i) } } else { if i[0] != 'a' && i[0] != 'A' { delete(wordStatistic, i) } else if i[0] == 'A' { wordStatistic["a"] += wordStatistic[i] delete(wordStatistic, i) } } } /*把map的关键字映射到string切片进行排序*/ sortSlice := make([]string, 0, len(wordStatistic)) for i := range wordStatistic { sortSlice = append(sortSlice, i) } sort.Strings(sortSlice) /*输出结果*/ for _, v := range sortSlice { fmt.Printf("%s:%d\n", v, wordStatistic[v]) } fmt.Printf("word count:%d\n", len(wordStatistic)) }
主函数随便输入一篇英语文章
func main() { str := ` There are moments in life when you miss someone so much that you just want to pick them from your dreams and hug them for real! Dream what you want to dream;go where you want to go;be what you want to be,because you have only one life and one chance to do all the things you want to do. May you have enough happiness to make you sweet,enough trials to make you strong,enough sorrow to keep you human,enough hope to make you happy? Always put yourself in others'shoes.If you feel that it hurts you,it probably hurts the other person, too. The happiest of people don't necessarily have the best of everything;they just make the most of everything that comes along their way.Happiness lies for those who cry,those who hurt, those who have searched,and those who have tried,for only they can appreciate the importance of people who have touched their lives.Love begins with a smile,grows with a kiss and ends with a tear.The brightest future will always be based on a forgotten past, you can't go on well in life until you let go of your past failures and heartaches. When you were born,you were crying and everyone around you was smiling. Live your life so that when you die,you're the one who is smiling and everyone around you is crying. Please send this message to those people who mean something to you, to those who have touched your life in one way or another,to those who make you smile when you really need it,to those that make you see the brighter side of things when you are really down,to those who you want to let them know that you appreciate their friendship.And if you don't, don't worry,nothing bad will happen to you,you will just miss out on the opportunity to brighten someone's day with this message.` //调用功能 wordCounterV1(str) }
编译后终端输出结果:
C:\Users\24213\go project>cd src\github.com\go-study\lesson6\practice1 C:\Users\24213\go project\src\github.com\go-study\lesson6\practice1>go build C:\Users\24213\go project\src\github.com\go-study\lesson6\practice1>practice1 a:4 all:1 along:1 always:2 and:8 another:1 appreciate:2 are:2 around:2 bad:1 based:1 be:3 because:1 begins:1 best:1 born:1 brighten:1 brighter:1 brightest:1 can:2 chance:1 comes:1 cry:1 crying:2 day:1 die:1 do:2 don:3 down:1 dream:2 dreams:1 ends:1 enough:4 everyone:2 everything:2 failures:1 feel:1 for:3 forgotten:1 friendship:1 from:1 future:1 go:4 grows:1 happen:1 happiest:1 happiness:2 happy:1 have:7 heartaches:1 hope:1 hug:1 human:1 hurt:1 hurts:2 if:2 importance:1 in:4 is:2 it:3 just:3 keep:1 kiss:1 know:1 let:2 lies:1 life:5 live:1 lives:1 love:1 make:6 may:1 mean:1 message:2 miss:2 moments:1 most:1 much:1 necessarily:1 need:1 nothing:1 of:6 on:3 one:4 only:2 opportunity:1 or:1 other:1 others:1 out:1 past:2 people:3 person:1 pick:1 please:1 probably:1 put:1 re:1 real:1 really:2 searched:1 see:1 send:1 shoes:1 side:1 smile:2 smiling:2 so:2 someone:2 something:1 sorrow:1 strong:1 sweet:1 tear:1 that:6 the:10 their:3 them:3 there:1 they:2 things:2 this:2 those:9 to:19 too:1 touched:2 trials:1 tried:1 until:1 want:6 was:1 way:2 well:1 were:2 what:2 when:5 where:1 who:10 will:3 with:4 worry:1 you:32 your:4 yourself:1 word count:144
总结
以上所述是小编给大家介绍的go语言之给定英语文章统计单词数量(go语言小练习),希望对大家有所帮助!
到这里,我们也就讲完了《go语言之给定英语文章统计单词数量(go语言小练习)》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注golang学习网公众号,带你了解更多关于golang的知识点!
版本声明
本文转载于:脚本之家 如有侵犯,请联系study_golang@163.com删除

- 上一篇
- go语言开发环境安装及第一个go程序(推荐)

- 下一篇
- Go 验证字符串中是否包含中文(推荐)
查看更多
最新文章
-
- Golang · Go教程 | 23分钟前 |
- Golang文件IO测试:fstest模拟实战教程
- 303浏览 收藏
-
- Golang · Go教程 | 25分钟前 |
- Golang打造K8s自定义调度器方法
- 162浏览 收藏
-
- Golang · Go教程 | 27分钟前 |
- Go语言切片与数值转换技巧详解
- 384浏览 收藏
-
- Golang · Go教程 | 32分钟前 |
- Golang定时器与时间格式化技巧详解
- 168浏览 收藏
-
- Golang · Go教程 | 48分钟前 |
- Golang高效读取大文件方法解析
- 422浏览 收藏
-
- Golang · Go教程 | 1小时前 |
- Golang插件系统测试:plugin.Open隔离解析
- 373浏览 收藏
-
- Golang · Go教程 | 1小时前 |
- Golangnet/http教程:搭建服务器与客户端方法
- 217浏览 收藏
-
- Golang · Go教程 | 1小时前 |
- GolangCookie与Session管理全解析
- 225浏览 收藏
-
- Golang · Go教程 | 1小时前 |
- Golang原子替换:rename实现与事务解析
- 161浏览 收藏
-
- Golang · Go教程 | 1小时前 |
- Gin框架构建RESTAPI入门教程
- 455浏览 收藏
-
- Golang · Go教程 | 1小时前 |
- Golang日志优化:异步缓冲提升效率
- 387浏览 收藏
-
- Golang · Go教程 | 1小时前 |
- Golang覆盖率统计方法与工具使用技巧
- 119浏览 收藏
查看更多
课程推荐
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 511次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 498次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 484次学习
查看更多
AI推荐
-
- 千音漫语
- 千音漫语,北京熠声科技倾力打造的智能声音创作助手,提供AI配音、音视频翻译、语音识别、声音克隆等强大功能,助力有声书制作、视频创作、教育培训等领域,官网:https://qianyin123.com
- 95次使用
-
- MiniWork
- MiniWork是一款智能高效的AI工具平台,专为提升工作与学习效率而设计。整合文本处理、图像生成、营销策划及运营管理等多元AI工具,提供精准智能解决方案,让复杂工作简单高效。
- 89次使用
-
- NoCode
- NoCode (nocode.cn)是领先的无代码开发平台,通过拖放、AI对话等简单操作,助您快速创建各类应用、网站与管理系统。无需编程知识,轻松实现个人生活、商业经营、企业管理多场景需求,大幅降低开发门槛,高效低成本。
- 105次使用
-
- 达医智影
- 达医智影,阿里巴巴达摩院医疗AI创新力作。全球率先利用平扫CT实现“一扫多筛”,仅一次CT扫描即可高效识别多种癌症、急症及慢病,为疾病早期发现提供智能、精准的AI影像早筛解决方案。
- 98次使用
-
- 智慧芽Eureka
- 智慧芽Eureka,专为技术创新打造的AI Agent平台。深度理解专利、研发、生物医药、材料、科创等复杂场景,通过专家级AI Agent精准执行任务,智能化工作流解放70%生产力,让您专注核心创新。
- 97次使用
查看更多
相关文章
-
- GoJava算法之单词规律示例详解
- 2023-01-07 156浏览
-
- go中控制goroutine数量的方法
- 2023-02-16 126浏览
-
- 利用golang的字符串解决leetcode翻转字符串里的单词
- 2023-01-01 375浏览
-
- MySQL表字段数量限制及行大小限制详情
- 2023-01-07 357浏览