ruby集合操作

博客统计信息

51cto推荐博客
用户名:fsjoy1983
文章数:301
评论数:210
访问量:220335
无忧币:2384
博客积分:3838
博客等级:7
注册日期:2008-02-04

 

我的技术圈(3)

更多>>
ruby 集合
2008-04-07 12:03:12
标签: ruby 集合
原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。 http://fsjoy.blog.51cto.com/318484/70176
ruby有Set类用来适用集合!
在使用之前要 require 'set'
集合操作:
并集:Set#union(别名:|或+)
require 'set'
s1=Set[3,4,5]
s2=Set[3,1,5]
p s1.union(s2)
p s1+s2
p s1|s2
#<Set: {5, 1, 3, 4}>
#<Set: {5, 1, 3, 4}>
#<Set: {5, 1, 3, 4}>
交集:Set#intersection(别名:&)
require 'set'
s1=Set[3,4,5]
s2=Set[3,1,5]
p s1.intersection(s2)
p s1&s2
#<Set: {5, 3}>
#<Set: {5, 3}>
差集:Set#-
require 'set'
s1=Set[3,4,5]
s2=Set[3,1,5]
p s1-s2
p s2-s1
#<Set: {4}>
#<Set: {1}>
Set#member?  ,  Set#include?
require 'set'
s1=Set[3,4,5]
s2=Set[3,1,5]
p s1.include?(3)
p s2.member?(5)
true
true
Set#empty?  , Set#clear?
require 'set'
s1=Set[3,4,5]
s2=Set[3,1,5]
p s1.empty?
s1.clear
p s1.empty?
false
true
测试两个集合的关系:
1.接收方是否为另一个集合的子集?真子集?超集?
require 'set'
x = Set[3,4,5]
y = Set[3,4]

p x.subset?(y)                  #x是否y的子集?       否
p y.subset?(x)                  #y是否x的子集?       是
p y.proper_subset?(x)        #y是否x的真子集?     是
p x.subset?(x)                  #x是不是本身的子集? 是
p x.proper_subset?(x)        #x是否本身的真子集? 否
p x.superset?(y)               #x是否y的超集?        是
Set#add(别名<<):往集合中添加元素,返回添加后的集合。 merge方法用于合并两个集合(并集)
require 'set'
x = Set[3,4,5]
y= Set[1,2,3]
p x<<5
p x.merge(y)
#<Set: {5, 3, 4}>
#<Set: {5, 1, 2, 3, 4}>
----------------------------
 

本文出自 “李骥平” 博客,请务必保留此出处http://fsjoy.blog.51cto.com/318484/70176

0人
了这篇文章
类别: The Ruby Way 技术圈( 1)┆阅读( 441)┆评论( 0) ┆ 推送到技术圈返回首页

文章评论

 
 

发表评论

昵  称:
登录  快速注册
验证码:

请点击后输入验证码博客过2级,无需填写验证码

内  容:

你可能感兴趣的:(Ruby)