我是靠谱客的博主 狂野帅哥,最近开发中收集的这篇文章主要介绍java算法题常用工具模板,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

目录标题

    • 输入与输出
      • 1.Scanner
      • 2.BufferReader
    • 数组初始化
      • 初始化一维数组
      • 初始化二维数组
    • 字符型的0-9数字转为int型数字:
    • 字符数组转字符串:
    • 数组拷贝
    • 数组与List互相转换
      • 数组转List
      • List转数组
    • 排序
      • 对List排序
    • 常用容器操作(对比C++ STL)
      • 1.vector 和 ArrayList
      • 2.pair 和 Pair
      • 3.string 和 String
      • 4.queue, stack, deque 和 Deque
      • 5.priority_queue 和 PriorityQueue
      • 6.unordered_set 和 HashSet
      • 7.unordered_map 和 HashMap
    • 图的存储
      • 邻接矩阵
      • 邻接表

输入与输出

一般我常用的数据输入方法有两种,Scanner和BufferedReader。BufferedReader可以读一行,速度比Scanner快,所以数据较多的时候使用。注意BufferedReader用完记得关。

1.Scanner

import java.util.*;

public class Main{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt(); // String: next(), double: nextDouble()
        int[] nums = new int[n];
        for (int i = 0; i < n; i++)
            nums[i] = sc.nextInt();
    }
}

2.BufferReader

import java.util.*;
import java.io.*;

public class Main{
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        //读入的是字符串形式,需要转化为整型
        int n = Integer.parseInt(reader.readLine());
        int[] nums = new int[n];
        String[] strs = reader.readLine().split(" ");
        for (int i = 0; i < n; i++)
            nums[i] = Integer.parseInt(strs[i]);
        reader.close(); // 记得关闭
    }
}

数组初始化

初始化一维数组

int[] arr = new int[110];
Arrays.fill(arr,-1);
  • 注意Arrays.fill只能用来初始化一维数组,不能用来直接初始化多位数组。

初始化二维数组

\使用循环初始化所有行
int[] arr = new int[110][110];
for(int[] row : arr)
    Arrays.fill(row, -1);

字符型的0-9数字转为int型数字:

直接将字符值减去48,因为数字0对应的ASCII码值为48:

 char a = 1; int i = a-48;
 //或者直接减去字符'0'
 char a = 1; int i = a-'0';

字符数组转字符串:

//构造String时传参
char data[] = {'s', 'g', 'k'};
String str = new String(data);
//String.valueOf(char[] chr)
char[] cha = {'s','g','h'};
String n = String.valueOf(cha);

数组拷贝

  • 拷贝所有元素,使用Object类的clone方法
int[] a = {1,2,3}
int[] b = a.clone();
  • 拷贝指定位置元素
//函数原型:copyOfRange(oringinal,int from, int to)
//该方法是从original数组的下标from开始复制,到下标to结束
int[] a = {1,2,3,4};
int[] b = Arrays.copyOfRange(a,2,3);

数组与List互相转换

数组转List

Integer[] arr = new Integer[] { 1, 2, 3 };
List<Integer> list = Arrays.asList(arr);
for(Integer i:list)
                    System.out.println(i);

List转数组

List<Integer> stockList = new ArrayList<>();
stockList.add(1);stockList.add(2);

Integer[] stockArr = new Integer[stockList.size()];
stockArr = stockList.toArray(stockArr);

for(Integer s : stockArr)
    System.out.println(s+" ");

排序

对List排序

  • Collections.sort()方法:
	List<Integer> list = new ArrayList<>();
	list.add();list.add();list.add();
//升序排序	
	Collections.sort(list);
//逆序排序
    Collections.sort(list, Collections.reverseOrder());
  • List.sort()方法:
List<Integer> list= new ArrayList<>();
list.add(-3);list.add(5);list.add(1);list.add(3);
//升序排序,也可写作 stockList.sort(Integer::compareTo);
        list.sort((Integer o1,Integer o2)->o1-o2);
//降序只需改变Comparator的结果符号即可
        list.sort((Integer o1,Integer o2)->o2-o1);
  • 对字符串类型或者char类型
 List<String> stringList = new ArrayList<>();
        stringList.add("a");
        stringList.add("hard");
        stringList.add("good");
//        stringList.sort((String::compareTo));//字典序
//        stringList.sort(Comparator.naturalOrder());//字典序
//        stringList.sort((String s1, String s2)->s1.compareTo(s2));//字典序
//        stringList.sort((String s1, String s2)->s2.compareTo(s1));//逆字典序
//        stringList.sort(Comparator.reverseOrder());//逆字典序
          stringList.sort((String::lastIndexOf));//按最后一位字母的字典序
  • 对基本类型数组排序
    Arrays.sort(arr)可以对数组按升序排序,此时arr可以是基本类型的数组(如int[], double[], char[]等),也可以是包装类型(Integer[], Double[]等)。
    Arrays.sort(arr, Collections.reverseOrder()) 可以对数组按降序排序,但此时arr只能是包装类型。

常用容器操作(对比C++ STL)

1.vector 和 ArrayList

vector<int> a; - ArrayList<Integer> a = new ArrayList<>();
size()  - size()  // 返回元素个数
empty() - isEmpty()  // 返回是否为空
clear() - clear  // 清空
front()/back() - get(0)/get(a.size() - 1)
push_back()/pop_back() - add()/remove(a.size() - 1)
begin()/end() - iterator()
[] - get()
支持比较运算 - 不支持比较运算

ArrayList 的遍历:
for (int i = 0; i < a.size(); i++) a.get(i);

Iterator<Integer> iterator = list.iterator();
while (iterator.hasNext()) iterator.next()

for (int num : a) num;

2.pair 和 Pair

(Java 需要 import javafx.util.Pair ,目前 acwing 不支持)

pair<int, int> p = make_pair(1, 2); - Pair<Integer, Integer> p = new Pair<>(1, 2); 
first - getKey() // 第一个元素
second - getValue() // 第二个元素
支持比较运算 - 不支持比较运算

///java中自定义pair类
class Pair implements Comparable<Pair>{
	public int x,y;
	public Pair(int x,int y){
		this.x = x;
		this.y = y;
	}
	//若需要pair排序,则加上下面代码
	@Override
	public int compareTo(Pair o){
		return Integer.compare(x,o.x);
	}
}

3.string 和 String

string a = "yxc"; - String b = "hqh";
size()/length() - length()  // 返回字符串长度
empty()
clear()
substr(起始下标,(子串长度)) - substring(起始下标,(终止下标 + 1)) // 返回子串
c_str()  // 返回字符串所在字符数组的起始地址
支持加法运算 - 支持加法运算

4.queue, stack, deque 和 Deque

queue, 队列
   size()  - size()
   empty() - isEmpty()
   push()  - offer()  // 向队尾插入一个元素
   front() - peek()  // 返回队头元素
   back()  // 返回队尾元素
   pop()   - poll()  // 弹出队头元素


stack,size()  - size()
   empty() - isEmpty()
   push()  - push()  // 向栈顶插入一个元素
   top()   - peek()  // 返回栈顶元素
   pop()   - pop()  // 弹出栈顶元素

deque, 双端队列
   size()  - size()
   empty() - isEmpty()
   clear() - clear()
   front()/back() - getFirst()/getLast()
   push_back()/pop_back()   - offerLast()/pollLast()
   push_front()/pop_front() - offerFirst()/pollFirst()
   begin()/end() - iterator()
   []

5.priority_queue 和 PriorityQueue

默认是大根堆 - 默认是小根堆
push() - offer()  // 插入一个元素
top() - peek()  // 返回堆顶元素
pop() - poll() // 弹出堆顶元素

PriorityQueue 定义成大根堆的方式:
PriorityQueue<Integer> pq = new PriorityQueue<>((o1, o2) -> o2 - o1);

6.unordered_set 和 HashSet

size() - size()
empty() - isEmpty()
clear() - clear()
insert() - add()  // 插入一个数
find() - contains()  // 查找一个数
erase() - remove() // 删除元素

7.unordered_map 和 HashMap

size()   - size()
empty()  - isEmpty()
clear()  - clear()
insert() - put() // 插入的数是一个 pair
find()   - get(key) // 查找一个 pair
erase()  - remove() // 删除元素
    	 - containsKey(key)/containsValue(value) // 判断元素是否在集合中
   		 - entrySet() // 返回一个包含所有节点的集合
   		 - keySet() // 返回一个包含所有键的集合
   		 - values() // 返回一个包含所有值的集合
    	 - getOrDefault(key, default value) // 返回指定 key 的 value,若 key 不存在 则返回 default value
   		 - putIfAbsent(key, value) // 如果集合中没有该 key 对应的节点,则插入

图的存储

n个点,m条边,m约等于n2n2叫做稠密图,用邻接矩阵存储;n个点,m条边,m远小于n2n2叫做稀疏图,用邻接表存储。

邻接矩阵

public class Main{
    public static final int INF = 0x3f3f3f3f;
    public static int n;
    public static int[][] g;
    public static int[] dist;
    public static boolean[] visit;

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        int m = sc.nextInt();
        g = new int[n + 1][n + 1];
        dist = new int[n + 1];
        visit = new boolean[n + 1];
        for (int i = 1; i <= n; i++)
            for (int j = 1; j <= n; j++)
                if (i == j)
                    g[i][j] = 0;
                else
                    g[i][j] = INF;
        for (int i = 0; i < m; i++) {
            int x = sc.nextInt(), y = sc.nextInt(), z = sc.nextInt();
            g[a][b] = Math.min(g[a][b], c);
        }
        //int res = dijkstra();
        System.out.println(res);
    }
}

邻接表

import java.util.*;

public class Main{
    public static int INF = 0x3f3f3f3f;
    public static int n;
    public static Map<Integer, List<Node>> map = new HashMap<>();
    public static int[] dist;
    public static boolean[] visit;

    public static class Node {
        public int node;
        public int length;

        public Node(int node, int length) {
            this.node = node;
            this.length = length;
        }
    }

    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        n = sc.nextInt();
        dist = new int[n + 1];
        visit = new boolean[n + 1];
        int m = sc.nextInt();
        for (int i = 1; i <= n; i++)
            map.put(i, new ArrayList<>());
        for (int i = 0; i < m; i++) {
            int x = sc.nextInt(), y = sc.nextInt(), z = sc.nextInt();
            map.get(x).add(new Node(y, z));
        }
        //int res = dijkstra();
        System.out.println(res);
    }
}

最后

以上就是狂野帅哥为你收集整理的java算法题常用工具模板的全部内容,希望文章能够帮你解决java算法题常用工具模板所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部