ruby 数组元素替换_从Ruby中的集合中删除并替换元素

ruby 数组元素替换

Ruby has various specific methods to fulfil specific tasks. At several places, you may need to replace or delete an element from an instance of set class provided that there are certain elements present in the Set. You can perform deletion operation with the help of Set.delete method and if we talk about the replacement of an element, we take help from Set.replace method. In this tutorial, you will find codes through which you can find the solutions to the problem.

Ruby具有完成特定任务的各种特定方法。 如果在Set中存在某些元素,则可能需要在几个地方从set的实例中替换或删除元素 。 您可以借助Set.delete方法执行删除操作,如果我们谈论元素替换 ,我们将从Set.replace方法中获取帮助。 在本教程中,您将找到代码,通过这些代码可以找到问题的解决方案。

  • The first program will tell you the way to replace an element from the Set.

    第一个程序将告诉您从Set中替换元素的方法。

  • The second program will tell you the way to delete an element from the Set.

    第二个程序将告诉您从Set中删除元素的方法。

Methods used:

使用的方法:

  • Set.merge: This method is used to merge two sets.

    Set.merge :此方法用于合并两个集合。

  • ===: With the help of this operator we can check the presence of an element in the set.

    === :借助此运算符,我们可以检查集合中元素的存在。

  • Set.replace: With the help of this method, we can replace an element with a new element in the specific set.

    Set.replace :借助此方法,我们可以用特定集中的新元素替换一个元素。

  • Set.delete: This method is used to delete an element from the set.

    Set.delete :此方法用于从集合中删除元素。

Variables used:

使用的变量:

  • Vegetable: This is an instance of Set class.

    Vegetable :这是Set类的实例。

  • Fruits: This is an instance of Set class.

    水果 :这是Set类的实例。

Program 1:

程序1:

=begin
Ruby program to replace an element from the set.
=end
require 'set'
Vegetable = Set.new([ "potato", "brocolli" , "broccoflower" , "lentils" , "peas" , "fennel" , "chilli" , "cabbage" ])
Fruits = Set.new(["Apple","Mango","Banana","Orange","Grapes"])
Vegetable.merge(Fruits)
puts "Enter the element you want to replace: "
element = gets.chomp
if Vegetable === element
puts "Enter the new element"
newele = gets.chomp
if Vegetable.replace([element,newele])
puts "element Replaced"
else
puts "Error"
end
else
puts "element not present"
end

Output

输出量

RUN 1:
Enter the element you want to replace: 
Mango
Enter the new element
Jackfruit
element Replaced
RUN 2:
Enter the element you want to replace: 
beetroot
element not present

Explanation:

说明:

In the above code, you can observe that we are first merging two sets. We are then asking the user for the element which he or she wants to replace. If the element is present in the set then the replacement will take place. We are using === operator to check the presence of an element in the Set. If the presence of element comes out to be true then the user is asked for the new element and the old element is replaced with the new element.

在上面的代码中,您可以观察到我们首先合并了两个set 。 然后,我们向用户询问他或她要替换的元素。 如果元素存在于集合中,则将进行替换。 我们使用===运算符来检查Set中某个元素的存在。 如果出现的元素为真,则要求用户提供新元素,并将旧元素替换为新元素。

Program 2:

程式2:

=begin
Ruby program to delete an element from the set.
=end
require 'set'
Vegetable = Set.new(["potato",  "brocolli" , "broccoflower" , "lentils" , "peas" , "fennel" , "chilli" , "cabbage" ])
Fruits = Set.new(["Apple","Mango","Banana","Orange","Grapes"])
Vegetable.merge(Fruits)
puts "Enter the element you want to delete: "
element = gets.chomp
if Vegetable === element
Vegetable.delete(element)
puts "element deleted"
else
puts "element not present"
end

Output

输出量

RUN 1:
Enter the element you want to delete: 
Apple
element deleted
RUN 2:
Enter the element you want to delete: 
Jackfruit
element not present

Explanation:

说明:

In the above code first, we have merged two Sets. We are asking the user for the element which he or she wants to delete. First, we are checking whether the element is present or not with the help of === operator. We can also use Set.include?() method for this purpose. If we find that element is present, we delete it with the help of the Set.delete method.

首先在上面的代码中,我们合并了两个Set 。 我们正在向用户询问他或她要删除的元素。 首先,我们在===运算符的帮助下检查元素是否存在。 我们也可以为此使用Set.include?()方法 。 如果发现存在该元素,则可以在Set.delete方法的帮助下将其删除

翻译自: https://www.includehelp.com/ruby/delete-and-replace-an-element-from-the-set.aspx

ruby 数组元素替换

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

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

相关文章

我去,这几个Linux指令太装B了|动图展示

1. sl先看一下呼啸而过的火车;安装指令如下;sduo apt-get install sl执行结果如下:2. htop图形化Linux系统性能监测工具,屌不屌:安装指令如下:sduo apt-get install htop执行结果如下;3. gcp以前用cp复制文件总是看不懂…

书店POS机--细化迭代2--测试

2019独角兽企业重金招聘Python工程师标准>>> (1) 开始一次新的销售,点击书店POS系统的销售: (2) 进入销售模块之后的界面如下: (3)逐条录入商品条目(根据商品编号),并修改数量。确认无误之后点击“确认”按钮&#x…

XML文件的写入和读取(解析)基于DOM4J工具

这两天做了个天气的小应用,需要用到百度的天气api,获取到的信息是一个xml文档。 所以就从网上查了一下相关的知识,就是关于怎么去解析出来xml文件的信息。 先放一个我自己写的例子,加了点注释,贴这里吧。 package cn…

Google Guava,牛逼的脚手架

01、前世今生你好呀,我是 Guava。1995 年的时候,我的“公明”哥哥——Java 出生了。经过 20 年的发展,他已经成为世界上最流行的编程语言了,请允许我有失公允的把“之一”给去了。虽然他时常遭受着各种各样的吐槽,但他…

ruby 将字符转数字计算_Ruby程序计算一个数字中的位数

ruby 将字符转数字计算计算位数 (Counting the number of digits) Ruby does not provide you any predefined direct method through which you can find the number of digits in a number. Though one method can be implemented by converting the number into a string an…

python_L2_operator

1. i/j – division – if both are ints, result is int, represen9ng quo9ent without remainder e.g. 3/2 1 3.0/2 1.5  but   -3/2 -2 2. --2 >>> 2 3. a * 2 >>> aa 4 . abc[-1] returns c 5. world[:-1] returns worl转载于:https://www.cnbl…

Android Call requires API level 11 (current min is 8)的解决方案

【错误描述】 在用Eclipse开发过程中,为了兼容Android2.2和4.0以上版本,我在使用Notification类时做了2个版本的代码,代码根据系统版本不同执行相应模块,结果,等我输完代码,发现系统提示了一个这么的错误。…

阿里巴巴Druid,轻松实现MySQL数据库加密!

作者 | 王磊来源 | Java中文社群(ID:javacn666)转载请联系授权(微信ID:GG_Stone)为什么要加密?现在的开发习惯,无论是公司的项目还是个人的项目,都会选择将源码上传到 Gi…

计算机图形学图形旋转_计算机图形学中的平板显示

计算机图形学图形旋转平板显示器 (Flat Panel Display) It is generally known as FPD, the flat-panel display is such a display technology which overtakes Cathode Ray Tube as a new standard of computer desktop displays. Unlike monitors through CRT, flat-panel d…

一文掌握Redisson分布式锁原理|干货推荐

ReentrantLock 重入锁在说 Redisson 之前我们先来说一下 JDK 可重入锁: ReentrantLockReentrantLock 保证了 JVM 共享资源同一时刻只允许单个线程进行操作实现思路ReentrantLock 内部公平锁与非公平锁继承了 AQS[AbstractQueuedSynchronizer]1、AQS 内部通过 volatil 修饰的 in…

android创建文件夹和文件的一些经验教训

这几天做一个功能需要在手机上创建一个文件夹,然后往里面存储一些文件,首先得考虑用户有没有sdcard,如果有就在sdcard上创建一个指定的文件夹,如果没有则在你的工程所在的目录“/data/data/你的包名”下创建文件夹。用到的方法是&…

7种分布式事务的解决方案,一次讲给你听

本文约5300字,阅读时长「5分钟」什么是分布式事务分布式事务是指事务的参与者、支持事务的服务器、资源服务器以及事务管理器「分别位于不同的分布式系统的不同节点之上」。一个大的操作由N多的小的操作共同完成。而这些小的操作又分布在不同的服务上。针对于这些操…

js中的转译_JavaScript中的填充和转译

js中的转译JavaScript is rapidly advancing. Today its the most popular programming/scripting language that devs use to code logic and applications and is used in umpteen number of places. The community behind its development hasnt stopped creating and addin…

css @media 响应式布局

2019独角兽企业重金招聘Python工程师标准>>> &#xfeff;1、在 html 标签中 <link rel"stylesheet" type"text/css" href"style1.css" media"screen and (min-width: 600px) and (max-width: 800px)"> 2、在样式表中…

Apache JK Tomcat 集群问题

2019独角兽企业重金招聘Python工程师标准>>> 这几天被集群并发问题快折腾死了&#xff0c;望哪位高人看下到底是哪里出现了问题。 Apache Server是正常的&#xff0c;各服务器的Tomcat 也是正常的&#xff0c;但当Apache的连接数达到 300左右的时候&#xff0c;JK就…

Redis实现分布式锁的7种方案,及正确使用姿势!

种方案前言日常开发中&#xff0c;秒杀下单、抢红包等等业务场景&#xff0c;都需要用到分布式锁。而Redis非常适合作为分布式锁使用。本文将分七个方案展开&#xff0c;跟大家探讨Redis分布式锁的正确使用方式。如果有不正确的地方&#xff0c;欢迎大家指出哈&#xff0c;一起…

c#中的long类型示例_C#中带示例的无符号字节数组

c#中的long类型示例C&#xff03;中的无符号字节数组 (Unsigned Byte Array in C#) In C#.Net, we can create an unsigned byte array by using byte, byte is used to store only positive values between the range of 0 to 255 (Unsigned 8 bits integer). 在C&#xff03;…

Android软件开发之盘点所有Dialog对话框大合集(一)

转&#xff1a;http://xys289187120.blog.51cto.com/3361352/657562/ 雨松MOMO带大家盘点Android 中的对话框 今天我用自己写的一个Demo 和大家详细介绍一个Android中的对话框的使用技巧。 1.确定取消对话框 对话框中有2个按钮 通过调用 setPositiveButton 方法 和 setNegat…

JDK 9 对字符串 String 的优化,挺有意思!

String类可以说是Java编程中使用最多的类了&#xff0c;如果能对String字符串的性能进行优化&#xff0c;那么程序的性能必然能大幅提升。这不JDK9就对String字符串进行了改进升级&#xff0c;在某些场景下可以让String字符串内存减少一半&#xff0c;进而减少JVM的GC次数。Str…

PHP将数组存入数据库中的四种方式

PHP将数组存入数据库中的四种方式 最近突然遇到了一个问题&#xff0c;如何用PHP将数组存入到数据库中&#xff0c;经过自己的多方查找和研究&#xff0c;总结了以下四种方法&#xff1a;1.implode()和explode()方式2.print_r()和自定义函数方式3.serialize()和unserialize()方…