array dynamic intersection and union

J

Jamal Soueidan

Hello,

I was wondering If could intersect and union array dynamic in my code.

Let us say I have these conditions.

array = A & B | (C & D ) & E


Is their any ways of doing these stuff dynamic if all the objects was
arrays.

A = [1,2,3,4,5]


Thanks for any help.
 
R

Rob Biedenharn

Hello,

I was wondering If could intersect and union array dynamic in my code.

Let us say I have these conditions.

array = A & B | (C & D ) & E


Is their any ways of doing these stuff dynamic if all the objects was
arrays.

A = [1,2,3,4,5]


Thanks for any help.

Why don't you try a few examples and find out? If you still have
questions, then at least you can point to actual code to clarify where
you need help.

-Rob


Rob Biedenharn
(e-mail address removed) http://AgileConsultingLLC.com/
(e-mail address removed) http://GaslightSoftware.com/
 
J

Jamal Soueidan

Hello Rob,

Sorry I did not explain myself first time.

But I let us say I have these hashes.

rule = {:array => [1,2,3,4], :condition => "AND"}
rule2 = {:array => [1,2,3,4], :condition => "OR"}
rule3 = {:array => [3,4]}

How can I intersection and union based on the conditions in the hash
through them all?

So it end up like this

array = rule[:array] & rule2[:array] | rule3[:array]
 
R

Rob Biedenharn

Hello Rob,

Sorry I did not explain myself first time.

But I let us say I have these hashes.

rule = {:array => [1,2,3,4], :condition => "AND"}
rule2 = {:array => [1,2,3,4], :condition => "OR"}
rule3 = {:array => [3,4]}

How can I intersection and union based on the conditions in the hash
through them all?

So it end up like this

array = rule[:array] & rule2[:array] | rule3[:array]

Let me rephrase that because you still aren't giving enough
information to really know what you're trying to do.

Given an array of hashes:
input = [ {:array => [1,2,3,4], :condition => "AND"},
{:array => [2,4,6,8], :condition => "OR"},
{:array => [1,3]},
]
array = input[0][:array] & input[1][:array] | input[2][:array]
=> [2, 4, 1, 3]


Well, if you apply the operations serially, you will actually get
something like:

array = ((input[0][:array] & input[1][:array]) | input[2][:array])

Since & is higher precendence than |, the answer is the same, but if
you change the order:

array = input[0][:array] | input[1][:array] & input[2][:array]
=> [1, 2, 3, 4]

is not the same as:

array = ((input[0][:array] | input[1][:array]) & input[2][:array])
=> [1, 3]


def combine(arrays)
result, op = [], "OR"
arrays.each do |hsh|
case op
when "OR"
result |= hsh[:array]
when "AND"
result &= hsh[:array]
end
op = hsh[:condition]
end
result
end

combine(input)
#=> [2, 4, 1, 3]

-Rob

Rob Biedenharn
(e-mail address removed) http://AgileConsultingLLC.com/
(e-mail address removed) http://GaslightSoftware.com/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Staff online

Members online

Forum statistics

Threads
473,767
Messages
2,569,571
Members
45,045
Latest member
DRCM

Latest Threads

Top