• JAVA中STL使用


    Vector:c++vector使用方法类似。

    Vector<Integer> vec=new Vector<> ();
    View Code

    ArrayList:Java.util.ArrayList类是一个动态数组类型,也就是说,ArrayList对象既有数组的特征,也有链表的特征。

    import java.util.*;
     
    public class Main {
        public static void main(String[] args) {
            ArrayList<Integer> arr=new ArrayList<>();
            arr.add(1);//添加
            arr.add(2,6);
            arr.size();//获取长度
            arr.set(1, 4);//修改
            int st=arr.remove(0);//删除
            //arr.clear();//清空
            //arr.get(1);//获取
            int v=arr.indexOf(3);//获取索引
            System.out.println(v);
        }
     
    }
    View Code

    LinkedList:LinkedList 实现 Deque 接口,即能将LinkedList当作双端队列使用。

    import java.util.*;
     
    public class Main {
        public static void main(String[] args) {
            LinkedList<Integer> lin=new LinkedList<>();
            lin.addFirst(st);//在首部加
            lin.addLast(st);//在尾
            lin.removeFirst();//移除首元素
            lin.removeLast();//
            lin.push(st);//压入栈
            lin.pop();//弹出栈
        }
     
    }
    View Code

    HashSet:无重复元素。

    HashSet<Integer> hashset=new HashSet<>();
    View Code

    HashMap:

    HashMap<Integer, Integer> map=new HashMap<>();
    View Code

    STL声明总结:

    import java.util.*;
     
    public class Main {
     
        public static void main(String[] args) {
     
            List<String> mylist1 = new ArrayList<>();
            List<String> mylist2 = new LinkedList<>();
            List<String> mylist3 = new Vector<>();
     
            Vector<String> vec = new Vector<>();
     
            Queue<String> que = new LinkedList<>();
     
            Stack<String> sta = new Stack<>();
     
            Set<String> myset = new HashSet<>();
            Set<String> myset2 = new TreeSet<>(); // Good
     
            Map<String, Integer> mymap = new HashMap<>(); // Good
            Map<String, Integer> mymap2 = new TreeMap<>();
        }
    }
    View Code
  • 相关阅读:
    如何用js解网页中间内容的高度自适应
    常见Js获取高宽度的方法
    CSS3 转换 transform
    CSS3 过渡 transition
    CSS3 动画 animation
    当页面内容不够的时候,如何让footer一直固定底部显示
    如何用js判断是否为手机访问
    用css解决table文字溢出控制td显示字数
    jquery实现全选和反选功能
    JS中filter的用法
  • 原文地址:https://www.cnblogs.com/solvit/p/9600591.html
Copyright © 2020-2023  润新知