Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a list of objects List[Object] which are all instantiated from the same class. This class has a field which must be unique Object.property. What is the cleanest way to iterate the list of objects and remove all objects(but the first) with the same property?

share|improve this question

4 Answers

up vote 28 down vote accepted
list.groupBy{_.property}.map{_._2.head}

Explanation: The groupBy method accepts a function that converts an element to a key for grouping. _.property is just shorthand for elem: Object => elem.property (the compiler generates a unique name, something like x$1). So now we have a map Map[Property, List[Object]]. A Map[K,V] extends Traversable[(K,V)]. So it can be traversed like a list, but elements are a tuple. This is similar to Java's Map#entrySet(). The map method creates a new collection by iterating each element and applying a function to it. In this case the function is _._2.head which is shorthand for elem: (Property, List[Object]) => elem._2.head. _2 is just a method of Tuple that returns the second element. The second element is List[Object] and head returns the first element

To get the result to be a type you want:

import collection.breakOut
val l2: List[Object] = list.groupBy{_.property}.map{_._2.head}(breakOut)

To explain briefly, map actually expects two arguments, a function and an object that is used to construct the result. In the first code snippet you don't see the second value because it is marked as implicit and so provided by the compiler from a list of predefined values in scope. The result is usually obtained from the mapped container. This is usually a good thing. map on List will return List, map on Array will return Array etc. In this case however, we want to express the container we want as result. This is where the breakOut method is used. It constructs a builder (the thing that builds results) by only looking at the desired result type. It is a generic method and the compiler infers its generic types because we explicitly typed l2 to be List[Object]

or, to preserve order (assuming Object#property is of type Property):

list.foldLeft((List[Object](), Set[Property]())){(r, o) => 
  if (r._2(o.property)) r else (o :: r._1, r._2 + o.property)
}._1.reverse

foldLeft is a method that accepts an initial result and a function that accepts an element and returns an updated result. The method iterates each element, updating the result according to applying the function to each element and returning the final result. In this case, the initial result is a pair (tuple) of an empty list and a set. The list is the result we're interested in and the set is used to keep track of what properties we already encountered. In each iteration we check if the set (r._2) already contains the property (in Scala, obj(x) is translated to obj.apply(x). In Set, the method apply is def apply(a: A): Boolean. That is, accepts an element and returns true / false if it exists or not). If the property exists (already encountered), the result is returned as-is. Otherwise the result is updated to contain the object (o :: r._1) and the property is recorded (r._2 + o.property)

Update: @andreypopp wanted a generic method:

import scala.collection.IterableLike
import scala.collection.generic.CanBuildFrom

class RichCollection[A, Repr](xs: IterableLike[A, Repr]){
  def distinctBy[B, That](f: A => B)(implicit cbf: CanBuildFrom[Repr, A, That]) = {
    val builder = cbf(xs.repr)
    val i = xs.iterator
    var set = Set[B]()
    while(i.hasNext) {
      val o = i.next
      val b = f(o)
      if (!set(b)) {
        set += b
        builder += o
      }
    }
    builder.result
  }
}

implicit def toRich[A, Repr](xs: IterableLike[A, Repr]) = new RichCollection(xs)

to use:

scala> list.distinctBy(_.property)
res7: List[Obj] = List(Obj(1), Obj(2), Obj(3))
share|improve this answer
perfect, just made a paradigm shift. – parsa Oct 12 '10 at 8:40
Would be awesome if you can provide a quick explanation. I think Scala is sufficiently new that not everyone will understand this immediately. – Sudhir Jonathan Oct 12 '10 at 8:40
Specifically, what does _2 do in this context? – Sudhir Jonathan Oct 12 '10 at 8:41
2  
Maybe scala collection needs distinct(A => B), that do distinct by key? – andreypopp Oct 12 '10 at 11:59
1  
+1, This method - distinctBy - should be added to the stdlib, methinks. – missingfaktor Oct 12 '10 at 14:20
show 4 more comments

Here is a little bit sneaky but fast solution that preserves order:

list.filter{ var set = Set[Property]()
    obj => val b = set(obj.property); set += obj.property; b}

Although it uses internally a var, I think it is easier to understand and to read than the foldLeft-solution.

share|improve this answer
2  
I agree. Cool trick with the scope hiding of the var – IttayD Oct 12 '10 at 9:08
I'm clearly missing something here. What is Property exactly? – parsa Oct 12 '10 at 11:00
@parsa28: Property is the type of obj.property – Landei Oct 12 '10 at 11:31

One more solution


    @tailrec
    def CollectUnique(l: List[Object], s: Set[Property], u: List[Object]): List[Object] = l match {

      case Nil => u.reverse
      case (h :: t) => if (s(h.property)) CollectUnique(t,s,u) 
                          else CollectUnique(t,s+h.prop,h::u)
    }

share|improve this answer
Functional :D ! – noncom Jul 10 '12 at 14:33

I don't know which version of Scala you are using, but 2.8.2 definitely has

list.distinct
share|improve this answer
1  
That won't work in the particular case the question concerns, because the question is that: "This class has a field which must be unique: Object.property" – KajMagnus Apr 8 at 16:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.