DEV Community

V I N O T H
V I N O T H

Posted on

1 1 1 1 1

treeset in java

package framework;

import java.util.TreeSet;

public class treeset {
    public static void main(String[] args) {

        String name = "amalareegan";
                TreeSet hs = new TreeSet();
                hs.add(50);
                hs.add(10);
                hs.add(20);
                hs.add(30);
                System.out.println(hs);
        }
    }

Enter fullscreen mode Exit fullscreen mode

output

[10, 20, 30, 50]

Enter fullscreen mode Exit fullscreen mode

Top comments (0)