DEV Community

Angela
Angela

Posted on

Bootcamp Java Developer Day #9

Day 9:

Still learning about Collections in Java. Somethings I already knew from python, but I realized I need to study binary trees.

8) Ongoing: Implementing Collections and Streams with Java

Today's topics were:

  • Queue
    java.util.LinkedList;
    java.util.Queue;

  • Set
    java.util.Set
    java.util.HashSet
    java.util.TreeSet
    java.util.LinkedHashSet

  • Map
    java.util.Map;
    java.util.HashMap
    java.util.TreeMap
    java.util.HashTable
    java.util.Iterator

Top comments (0)