scala bitset_Scala中的BitSet

scala bitset

Scala BitSet (Scala BitSet)

Set is a collection of unique elements.

集合是唯一元素的集合。

Bitset is a set of positive integers represented as a 64-bit word.

位集是一组表示为64位字的正整数。

Syntax:

句法:

    var bitset : Bitset = Bitset(elements...)

In the Scala programming language, BitSet can be mutable as well as immutable.

在Scala编程语言中, BitSet可以是可变的而且是不变的。

In mutable BitSet, bits can be changed in the program. Using scala.collection.mutable.BitSet

可变的BitSet中 ,可以在程序中更改位。 使用scala.collection.mutable.BitSet

In immutable BitSet, bits cannot be changed in the program. Using scala.collection.immutable.BitSet

不可变的BitSet中 ,不能在程序中更改位。 使用scala.collection.immutable.BitSet

Example 1: Creation of a new BitSet

示例1:创建一个新的BitSet

import scala.collection.immutable.BitSet
object MyClass {
def main(args: Array[String]) {
val bitSet: BitSet = BitSet(0, 1, 2, 3) 
println("Elements of new BitSet are " + bitSet) 
}
}

Output

输出量

Elements of new BitSet are BitSet(0, 1, 2, 3)

Example 2: Search for an element in BitSet

示例2:在BitSet中搜索元素

Search operation on BitSet in Scala is quite easy and passing the elements to be searched in BitSet, and it will return true or false based on the search.

在Scala中对BitSet进行搜索操作非常容易,并且可以在BitSet中传递要搜索的元素,并且根据搜索结果将返回true或false。

import scala.collection.immutable.BitSet
object MyClass {
def main(args: Array[String]) {
val bitSet: BitSet = BitSet(0, 13, 25, 39, 50) 
println("Elements of new BitSet are " + bitSet) 
println("Element 25 is in the BitSet? " + bitSet(25))
println("Element 34 is in the BitSet? " + bitSet(34))
}
}

Output

输出量

Elements of new BitSet are BitSet(0, 13, 25, 39, 50)
Element 25 is in the BitSet? true
Element 34 is in the BitSet? false

Example 3: Adding elements to the BitSet

示例3:将元素添加到BitSet

You can add one or multiple elements in a BitSet in Scala. The operators + and ++ are used to add single and multiple elements in BitSet in Scala. The operation will require new BitSet to hold the updated BitSet.

您可以在ScalaBitSet中添加一个或多个元素。 运算符+和++用于在Scala的BitSet中添加单个和多个元素。 该操作将需要新的BitSet来保存更新的BitSet。

import scala.collection.immutable.BitSet
object MyClass {
def main(args: Array[String]) {
val bitSet: BitSet = BitSet(0, 13, 25, 39, 50) 
println("Elements of new BitSet are " + bitSet) 
println("Adding new elements to BitSet : ")
val bitSet2 : BitSet = bitSet + 45 
println("Elements of new BitSet are " + bitSet2) 
println("Adding new elements to BitSet : ")
val bitSet3 : BitSet = bitSet2 ++  BitSet(34 , 54)
println("Elements of new BitSet are " + bitSet3) 
}
}

Output

输出量

Elements of new BitSet are BitSet(0, 13, 25, 39, 50)
Adding new elements to BitSet : 
Elements of new BitSet are BitSet(0, 13, 25, 39, 45, 50)
Adding new elements to BitSet : 
Elements of new BitSet are BitSet(0, 13, 25, 34, 39, 45, 50, 54)

Example 4: Deleting Elements from BitSet in Scala

示例4:从Scala的BitSet中删除元素

You can delete elements from BitSet in Scala. The operator - is used to delete an element from BitSet. The operations will require new BitSet to hold the updated BitSet.

您可以从Scala的BitSet中删除元素。 运算符-用于从BitSet中删除元素。 该操作将需要新的BitSet来保存更新的BitSet。

import scala.collection.immutable.BitSet
object MyClass {
def main(args: Array[String]) {
val bitSet: BitSet = BitSet(0, 13, 25, 39, 50) 
println("Elements of new BitSet are " + bitSet) 
println("Deleting element from BitSet : ")
val bitSet2 : BitSet = bitSet - 25 
println("Elements of new BitSet are " + bitSet2)
}
}

Output

输出量

Elements of new BitSet are BitSet(0, 13, 25, 39, 50)
Deleting element from BitSet : 
Elements of new BitSet are BitSet(0, 13, 39, 50)

Example 5: Creating Empty BitSet in Scala

示例5:在Scala中创建空的BitSet

An empty set can also be created in Scala. The empty keyword is used to create an empty BitSet in Scala.

也可以在Scala中创建一个空集。 empty关键字用于在Scala中创建一个空的BitSet。

import scala.collection.immutable.BitSet
object MyClass {
def main(args: Array[String]) {
val bitSet: BitSet = BitSet.empty
println("Elements of new BitSet are " + bitSet) 
}
}

Output

输出量

Elements of new BitSet are BitSet()

翻译自: https://www.includehelp.com/scala/bitset.aspx

scala bitset

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

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

相关文章

构建安全网络 比格云全系云产品30天内5折购

一年之计在于春,每年的三、四月,都是个人创业最佳的起步阶段,也是企业采购最火热的时期。为了降低用户的上云成本,让大家能无门槛享受到优质高性能的云服务,比格云从3月16日起,将上线“充值30天内&#xff…

python中 numpy_Python中的Numpy

python中 numpyPython中的Numpy是什么? (What is Numpy in Python?) Numpy is an array processing package which provides high-performance multidimensional array object and utilities to work with arrays. It is a basic package for scientific computati…

[转载] python之路《第二篇》Python基本数据类型

参考链接: Python中的Inplace运算符| 1(iadd(),isub(),iconcat()…) 运算符 1、算数运算: 2、比较运算: 3、赋值运算: 4、逻辑运算: 5、成员运算: 6、三元运算 三元运算&…

数据结构 基础知识

一。逻辑结构: 是指数据对象中数据 素之间的相互关系。 其实这也是我 今后最需要关注的问题 逻辑结构分为以 四种1. 集合结构 2.线性结构 3.数形结构 4,图形结构 二。物理结构: 1,顺序存储结,2 2. 链式存储结构 一,时间复杂…

ruby 变量类中范围_Ruby中的类

ruby 变量类中范围Ruby类 (Ruby Classes) In the actual world, we have many objects which belong to the same category. For instance, I am working on my laptop and this laptop is one of those laptops which exist around the globe. So, this laptop is an object o…

以云计算的名义 驻云科技牵手阿里云

本文讲的是以云计算的名义 驻云科技牵手阿里云一次三个公司的牵手 可能会改变无数企业的命运 2017年4月17日,对于很多人来说可能只是个平常的工作日,但是对于国内无数的企业来说却可能是个会改变企业命运的日。驻云科技联合国内云服务提供商阿里云及国外…

[转载] python学习笔记

参考链接: Python | a b并不总是a a b 官网http://www.python.org/ 官网library http://docs.python.org/library/ PyPI https://pypi.python.org/pypi 中文手册,适合快速入门 http://download.csdn.net/detail/xiarendeniao/4236870 py…

标志寄存器_访问标志寄存器,并与寄存器B |交换标志寄存器F的内容 8085微处理器...

标志寄存器Problem statement: 问题陈述: Write an assembly language program in 8085 microprocessor to access Flag register and exchange the content of flag register F with register B. 在8085微处理器中编写汇编语言程序以访问标志寄存器,并…

浏览器端已支持 ES6 规范(包括 export import)

当然,是几个比较优秀的浏览器,既然是优秀的浏览器,大家肯定知道是那几款啦,我就不列举了,我用的是 chrome。 对 script 声明 type 为 module 后就可以享受 es6 规范所带来的模块快感了。 基础语法既然是全支持&#xf…

[转载] Python学习:Python成员运算符和身份运算符

参考链接: Python中和is运算符之间的区别 Python成员运算符 除了以上的一些运算符之外,Python还支持成员运算符,测试实例中包含了一系列的成员,包括字符串,列表或元组。 运算符 描述 实例 in 如果在指定的序列中找…

量词逻辑量词里面的v表示?_代理知识表示中的量词简介(基于人工智能)

量词逻辑量词里面的v表示?As we know that in an AI-based agent, the knowledge is represented through two types of logic: The propositional logic and the predicate logic. In the propositional logic, we have declarative sentences, and in the predica…

[转载] Python 机器学习经典实例

参考链接: Python中的逻辑门 内容介绍 在如今这个处处以数据驱动的世界中,机器学习正变得越来越大众化。它已经被广泛地应用于不同领域,如搜索引擎、机器人、无人驾驶汽车等。本书首先通过实用的案例介绍机器学习的基础知识,然后…

哈希表的最差复杂度是n2_给定数组A []和数字X,请检查A []中是否有对X | 使用哈希O(n)时间复杂度| 套装1...

哈希表的最差复杂度是n2Prerequisite: 先决条件: Hashing data structure 散列数据结构 Problem statement: 问题陈述: Given an array and a sum X, fins any pair which sums to X. Expected time complexity O(n). 给定一个数组和一个和X &#xff…

一文读懂深度学习框架下的目标检测(附数据集)

从简单的图像分类到3D位置估算,在机器视觉领域里从来都不乏有趣的问题。其中我们最感兴趣的问题之一就是目标检测。 如同其他的机器视觉问题一样,目标检测目前为止还没有公认最好的解决方法。在了解目标检测之前,让我们先快速地了解一下这个领…

[转载] Python-Strings

参考链接: Python成员资格和身份运算符 | in, not in, is, is not Strings 介绍 String是Python中最常用的类型。仅仅用引号括起字符就可以创建string变量。字符串使用单引号或双引号对Python来说是一样的。 var1 Hello World! var2 "Pyth…

aes-128算法加密_加密算法问题-人工智能中的一种约束满意问题

aes-128算法加密The Crypt-Arithmetic problem in Artificial Intelligence is a type of encryption problem in which the written message in an alphabetical form which is easily readable and understandable is converted into a numeric form which is neither easily…

读书笔记《集体智慧编程》Chapter 2 : Make Recommendations

本章概要本章主要介绍了两种协同过滤(Collaborative Filtering)算法,用于个性化推荐:基于用户的协同过滤(User-Based Collaborative Filtering,又称 K-Nearest Neighbor Collaborative Filtering&#xff0…

[转载] python中的for循环对象和循环退出

参考链接: Python中循环 流程控制-if条件 判断条件,1位true,0是flesh,成立时true,不成立flesh,not取反 if 1; print hello python print true not取反,匹配取反,表示取非1…

设计一个应用程序,以在C#中的按钮单击事件上在MessageBox中显示TextBox中的文本...

Here, we took two controls on windows form that are TextBox and Button, named txtInput and btnShow respectively. We have to write C# code to display TextBox’s text in the MessageBox on Button Click. 在这里,我们在Windows窗体上使用了两个控件&…

Oracle优化器:星型转换(Star Query Transformation )

Oracle优化器:星型转换(Star Query Transformation )Star query是一个事实表(fact table)和一些维度表(dimension)的join。每个维度表都跟事实表通过主外键join,且每个维度表之间不j…