- 首页 |
- linux |
- ruby |
- ROR |
- 敏捷开发 |
- 扯 |
- 桌面show |
- Ajax on rails |
- design pattern |
- The Ruby Way |
- railscast |
- 技巧 |
- mac |
- mysql |
- 粒计算 |
- 数工 |
- flex on rails
在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
fsjoy1983 的BLOG热门文章搜索BLOG文章最新评论
51CTO推荐博文更多>>
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
同时赞一个
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论