Prettify example
  1. package foo;
  2.  
  3. import java.util.Iterator;
  4.  
  5. /**
  6. * the fibonacci series implemented as an Iterable.
  7. */
  8. public final class Fibonacci implements Iterable {
  9. /** the next and previous members of the series. */
  10. private int a = 1, b = 1;
  11. @Override
  12. public Iterator iterator() {
  13. return new Iterator() {
  14. /** the series is infinite. */
  15. public boolean hasNext() { return true; }
  16. public Integer next() {
  17. int tmp = a;
  18. a += b;
  19. b = tmp;
  20. return a;
  21. }
  22. public void remove() { throw new UnsupportedOperationException(); }
  23. };
  24. }
  25. /**
  26. * the nth element of the given series.
  27. * @throws NoSuchElementException if there are less than n elements in the
  28. * given Iterable's {@link Iterable#iterator iterator}.
  29. */
  30. public static
  31. T nth(int n, Iterable iterable) {
  32. Iterator it = iterable.iterator();
  33. while (--n > 0) {
  34. it.next();
  35. }
  36. return it.next();
  37. }
  38. public static void main(String[] args) {
  39. System.out.print(nth(10, new Fibonacci()));
  40. }
  41. }
Share on Google Plus

About Abhishek

0 comments:

Post a Comment