算法竞赛常用模板、数据结构

2022/7/6 1:24:14

本文主要是介绍算法竞赛常用模板、数据结构,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

初始化数组

Golang

go语言中定义二维数组和初始化比较特殊,需要先初始化行数再初始化列,定义一个mxn数组::

mat := make([][]int, m)
for i := range mat {
	mat[i] = make([]int, n)
}

Python

定义一个mxn数组:

mat = [[0] * n for _ in range(m)]

输入输出

Java

实例化后调用即可。

class Read{
    private BufferedReader bf;
    private StringTokenizer st;
    public Read(){
        bf=new BufferedReader(new InputStreamReader(System.in));
        st=new StringTokenizer("");
    }
    public String nextLine() throws IOException{
        return bf.readLine();
    }
    public String next() throws IOException{
        while(!st.hasMoreTokens()){
            st=new StringTokenizer(bf.readLine());
        }
        return st.nextToken();
    }
    public int nextInt() throws IOException{
        return Integer.parseInt(next());
    }
    public long nextLong() throws IOException{
        return Long.parseLong(next());
    }
    public double nextDouble() throws IOException{
        return Double.parseDouble(next());
    }
    public BigInteger nextBigInteger() throws IOException{
        return new BigInteger(next());
    }
}


这篇关于算法竞赛常用模板、数据结构的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程