Algorithmic Sets

(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
Zeile 4: Zeile 4:
 
<pre>
 
<pre>
 
public interface Predicate<T>{
 
public interface Predicate<T>{
   
+
      // If test returns true, we consider the element be part of the algorithmic set.
 +
      boolean test(T element);
 
}
 
}
  
 
</pre>
 
</pre>

Version vom 8. November 2014, 10:46 Uhr

Definition Algorithmic Set

  • We want to define an algorithmic set via a Predicate deciding if an element is part of the set.
  • In java we could use the functional interface Predicate<T>
public interface Predicate<T>{
       // If test returns true, we consider the element be part of the algorithmic set.
       boolean test(T element);
}

Meine Werkzeuge
Namensräume
Varianten
Aktionen
Navigation
Werkzeuge
Translate