牛客网编程练习之编程马拉松:数据库连接池

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了牛客网编程练习之编程马拉松:数据库连接池相关的知识,希望对你有一定的参考价值。

image

image

 

只需要两个变量即可,一个维护着连接池的当前连接数,一个维护着连接池的最大连接数。

 

AC代码:

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

/**
 * @author CC11001100
 */
public class Main {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		while (sc.hasNextLine()) {
			int n = sc.nextInt();
			sc.nextLine();
			List<String> operators = new ArrayList<>();
			while (n-- > 0) {
				operators.add(sc.nextLine());
			}
			System.out.println(resolve(operators));
		}

	}

	private static int resolve(List<String> operators) {
		int maxConnection = 0;
		int nowConnection = 0;
		for (String operator : operators) {
			if (operator.contains("disconnect")) {
				nowConnection++;
			} else if (operator.contains("connect")) {
				if (nowConnection <= 0) {
					maxConnection++;
				} else {
					nowConnection--;
				}
			}
		}
		return maxConnection;
	}

}

 

题目来源: https://www.nowcoder.com/practice/05f97d9b29944c018578d98d7f0ce56e?tpId=3&tqId=10884&tPage=1&rp=&ru=/ta/hackathon&qru=/ta/hackathon/question-ranking

以上是关于牛客网编程练习之编程马拉松:数据库连接池的主要内容,如果未能解决你的问题,请参考以下文章

牛客网编程练习之编程马拉松:砌墙

牛客网编程练习之编程马拉松:红与黑

牛客网编程练习之网易2017校招题:下厨房

牛客网编程练习之游戏任务标记

牛客网编程练习之解救小易

编程马拉松021-数据库连接池