scala中map添加值_如何在Scala Map中反转键和值

scala中map添加值

A Map is a data structure that stores data as key: value pair.

映射是一种将数据存储为键:值对的数据结构。

Syntax:

句法:

    Map(key->value, key->value)

反转地图中的键和值 (Reversing Keys and values in Map)

Here, we will see a program to reverse keys and values in Scala Map. We will reverse the values to keys and the keys to pairs.

在这里,我们将看到一个在Scala Map中反转键和值程序 。 我们将值反转为键,将键反转为对。

So, before this, we will have to make sure that both keys and values of the initial map are unique to avoid errors.

因此,在此之前,我们必须确保初始映射的键和值都唯一以避免错误。

Program:

程序:

object myObject { 
def main(args:Array[String]) { 
val bikes = Map(1->"S1000RR" , 2->"R1", 3->"F4" ) 
println("Inital map: " + bikes)		
val reverse = for ((a, b) <- bikes) yield (b, a) 
println("Reversed map: " + reverse) 
} 
} 

Output

输出量

Inital map: Map(1 -> S1000RR, 2 -> R1, 3 -> F4)
Reversed map: Map(S1000RR -> 1, R1 -> 2, F4 -> 3)

Explanation:

说明:

Here, we have declared a map and then reversed its values. In the reverse variable, we have inserted value that is reverse of each pair of the original map, the yield methods take the (key, value) pair and returns (value, key) pair to the reverse map.

在这里,我们声明了一个映射,然后反转了它的值。 在反向变量中,我们插入了与原始映射的每对相反的值,yield方法采用( key,value )对,然后将( value,key )对返回到反向映射。

What if values are not unique?

如果值不是唯一的怎么办?

There is a thing that is needed to be considered is both key-value pairs should be unique. But if we insert a duplicate in value, in the reverse map this will delete that pair.

有一点需要考虑的是,两个键值对都应该是唯一的。 但是,如果我们在值中插入重复项,则在反向映射中将删除该对。

Program:

程序:

object myObject { 
def main(args:Array[String]) { 
val bikes = Map(1->"S1000RR" , 2->"R1", 3->"F4", 4->"S1000RR" ) 
println("Inital map: " + bikes)		
val reverse = for ((a, b) <- bikes) yield (b, a) 
println("Reversed map: " + reverse) 
} 
} 

Output

输出量

Inital map: Map(1 -> S1000RR, 2 -> R1, 3 -> F4, 4 -> S1000RR)
Reversed map: Map(S1000RR -> 4, R1 -> 2, F4 -> 3)

So, the code runs properly but the reverse will delete the pair 4->S100RR to make all the keys of reverse map unique.

因此,代码可以正常运行,但是反向键将删除对4-> S100RR以使反向键的所有键都唯一。

翻译自: https://www.includehelp.com/scala/reverse-keys-and-values-in-scala-map.aspx

scala中map添加值

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/544368.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

在 Exchange 服务器上的操作系统中的防病毒软件

本主题介绍文件级防病毒程序对运行 Microsoft Exchange Server 2013 的计算机的影响。如果按照本主题中所述的建议操作&#xff0c;可以帮助提高 Exchange 组织的安全性并改善运行状况。文件级扫描程序经常使用。但是&#xff0c;如果配置不正确&#xff0c;可能会导致 Exchang…

SpringBoot 热部署神器快速重启的秘密!

今天咱们来聊聊这个热部署神器 spring-boot-devtools 的运行原理&#xff0c;看看它是怎么用这个 ClassLoader 来实现快速重启&#xff0c;帮我们节省时间的&#xff01;&#x1f61d;文章概要文章的主旋律如下&#x1f447;spring.factories我们直接打开 spring-boot-devtool…

计算机操作系统 内存_计算机内存的类型| 操作系统

计算机操作系统 内存什么是记忆&#xff1f; (What is Memory?) The essential component of the computer is its Memory. It is assembled on the motherboard as it is a storage device used for storing data and instructions for performing a task on the system. 计算…

关于 java 实现 语音朗读

最近有个java项目要实现 一个 java语音朗读的功能&#xff0c;百度了半天 没有现成的 。也是一头雾水。没具体思路。。。。。大体上总结了下网上的资料 1.java 实现起来 比c或者vb 能麻烦点&#xff0c;或者是这个功能用其他语言完成 然后整合到java 项目里面去&#xff01;2.…

查询MySQL字段注释的 5 种方法!

作者 | 磊哥来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;很多场景下&#xff0c;我们需要查看 MySQL 中表注释&#xff0c;或者是某张表下所有字段的注释&#xff0c;所以本文就来盘…

聊聊索引失效的10种场景,太坑了

前言今天我接着上一期数据库的话题&#xff0c;更进一步聊聊索引的相关问题&#xff0c;因为索引是大家都比较关心的公共话题&#xff0c;确实有很多坑。不知道你在实际工作中&#xff0c;有没有遇到过下面的这两种情况&#xff1a;明明在某个字段上加了索引&#xff0c;但实际…

python insert_Python列表| 带示例的insert()方法

python insertlist.insert()方法 (list.insert() Method) insert() is an inbuilt method in python, which is used to add an element /item at specified index to the list. insert()是python中的内置方法&#xff0c;用于将指定索引处的元素/ item添加到列表中。 insert(…

Java中的main方法

2019独角兽企业重金招聘Python工程师标准>>> 在一个Java应用程序中&#xff0c;通常程序的入口是一个main方法&#xff0c;它被声明为公有静态方法&#xff0c;参数是一个字符串数组&#xff0c;返回值为Void类型。这个方法有许多值得研究的地方&#xff0c;今天就来…

约瑟夫环问题(C++)

问题描述 首先&#xff0c;说明一下这个问题是研究生期间c课的综合作业&#xff0c;本来有好多选择但最后还是选择了约瑟夫环问题。下面是约瑟夫环的问题描述以及设计要求&#xff1a; 约瑟夫环&#xff08;约瑟夫问题&#xff09;是一个数学的应用问题&#xff1a;已知n个人&…

实战!工作中常用到哪些设计模式

前言 大家好&#xff0c;我是捡田螺的小男孩。平时我们写代码呢&#xff0c;多数情况都是流水线式写代码&#xff0c;基本就可以实现业务逻辑了。如何在写代码中找到乐趣呢&#xff0c;我觉得&#xff0c;最好的方式就是&#xff1a;使用设计模式优化自己的业务代码。今天跟大家…

什么是bcd码数据传输通讯_传输障碍| 数据通讯

什么是bcd码数据传输通讯传输障碍 (Transmission Impairment) In the data communication system, analog and digital signals go through the transmission medium. Transmission media are not ideal. There are some imperfections in transmission mediums. So, the signa…

Spring boot项目(问答网站)之timeline的推拉两种模式

Timeline介绍 所谓timeline就是当用户打开主页看到的随着时间轴发生的一系列时间的整合&#xff0c;主要包含&#xff1a; 关注用户的最新动态热门推荐广告推荐整合等等. 推、拉模式 推模式&#xff1a; 当一个用户关注了或者评论了一个问题或用户&#xff0c;触发事件&…

Bean放入Spring容器,你知道几种方式?

作者&#xff1a;三尺微命 一介书生来源&#xff1a;blog.csdn.net/weixin_43741092/article/details/120176466我们知道平时在开发中使用Spring的时候&#xff0c;都是将对象交由Spring去管理&#xff0c;那么将一个对象加入到Spring容器中&#xff0c;有哪些方式呢&#xff…

KMP POJ 2752 Seek the Name, Seek the Fame

题目传送门 1 /*2 题意&#xff1a;求出一个串的前缀与后缀相同的字串的长度3 KMP&#xff1a;nex[]就有这样的性质&#xff0c;倒过来输出就行了4 */5 /************************************************6 * Author :Running_Time7 * Created Time :2015-8-1…

c语言 函数的参数传递示例_C ++中带有示例的nearint()函数

c语言 函数的参数传递示例C 附近的int()函数 (C nearbyint() function) nearbyint() function is a library function of cmath header, it is used to round the given value to an integral value based on the specified direction by fegetround() function. It accepts a …

Spring boot项目(问答网站)之Python学习基础篇

简介 当问答网站基本框架搭建完毕之后需要一些初始的数据来进行填充&#xff0c;因此选用Python爬虫的方式&#xff0c;从网上截取一些资料信息&#xff08;当然是自己做项目使用&#xff0c;非商用&#xff09;放入到项目网站上面。这篇主要是关于Python基础知识的学习笔记。…

Spring Boot Admin,贼好使!

作者 | 磊哥来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;Spring Boot Admin&#xff08;SBA&#xff09;是一个开源的社区项目&#xff0c;用于管理和监控 Spring Boot 应用程序。应…

适用于各种列表操作的Python程序

Here, we are implementing a python program for various list operations, following operations are being performed in the list, 在这里&#xff0c;我们正在为各种列表操作实现python程序&#xff0c;正在列表中执行以下操作&#xff0c; Declaring an integer list 声…

一个障碍,就是一个超越自我的契机

一个障碍&#xff0c;就是一个新的已知条件&#xff0c;只要愿意&#xff0c;任何一个障碍&#xff0c;都会成为一个超越自我的契机。 有一天&#xff0c;素有森林之王之称的狮子&#xff0c;来到了 天神面前&#xff1a;"我很感谢你赐给我如此雄壮威武的体格、如此强大无…

JAVA基础之容器基础内容

Java Collections框架 Java Collections框架中包含了大量的集合接口以及这些接口的实现类和操作它们的方法&#xff0c;具体包含了Set(集合&#xff09;、List(列表)、Map(键值对)、Queue(队列)、Stack(栈)等&#xff0c;其中List、Set、Queue、Stack都继承了Collection接口。…