【蓝桥杯练习系统】基础练习(Java)(普通试题数+VIP试题数)

“蓝桥杯”练习系统 (lanqiao.cn)

基础入门

BASIC-01 A+B问题 入门

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int A = scanner.nextInt();int B = scanner.nextInt();System.out.println(A + B);}
}

BASIC-02 序列求和 入门 求和公式

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner in = new Scanner(System.in);long n = in.nextLong();System.out.println(n * (n + 1) / 2);}
}

BASIC-03 圆的面积 入门 实数输出

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int r = scanner.nextInt();double area = Math.PI * r * r;System.out.printf("%.7f%n", area);}
}

BASIC-04 Fibonacci数列 入门 数列 取模

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int n = scanner.nextInt(), a = 1, b = 1, sum;for (int i = 3; i <= n; i++) {sum = (a + b) % 10007;a = b;b = sum;}System.out.println(b);}
}

基础练习

BASIC-1 闰年判断 条件判断

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner in = new Scanner(System.in);int n = in.nextInt();System.out.println((n % 4 == 0 && n % 100 != 0) || (n % 400 == 0) ? "yes" : "no");}
}

BASIC-2 01字串 循环

public class Main {public static void main(String[] args) {for (int i = 0; i < 32; i++) {String binaryString = Integer.toBinaryString(i);binaryString = String.format("%5s", binaryString).replace(' ', '0');System.out.println(binaryString);}}
}

BASIC-3 字母图形 循环 字符串

import java.io.*;
import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner in = new Scanner(System.in);PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));int n = in.nextInt(), m = in.nextInt();for (int i = 0; i < n; i++) {StringBuilder sb = new StringBuilder();for (int j = 0; j < m; j++) {sb.append((char) ('A' + Math.abs(j - i)));}out.println(sb);}out.flush();}
}

BASIC-4 数列特征 循环 最大值 最小值 累加

import java.io.*;public class Main {static QuickInput in = new QuickInput();static PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));public static void main(String[] args) throws IOException {int n = in.nextInt(), min = 10000, max = -10000, sum = 0;for (int i = 0; i < n; i++) {int x = in.nextInt();min = Math.min(min, x);max = Math.max(max, x);sum += x;}out.println(max);out.println(min);out.println(sum);out.flush();}static class QuickInput {StreamTokenizer input = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in)));public int nextInt() throws IOException {input.nextToken();return (int) input.nval;}}
}

BASIC-5 查找整数 循环 判断

import java.io.*;
import java.util.*;public class Main {static QuickInput in = new QuickInput();public static void main(String[] args) throws IOException {int n = in.nextInt();Map<Integer, Integer> map = new HashMap<>();for (int i = 1; i <= n; i++) {map.putIfAbsent(in.nextInt(), i);}System.out.println(map.getOrDefault(in.nextInt(), -1));}static class QuickInput {StreamTokenizer input = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in)));public int nextInt() throws IOException {input.nextToken();return (int) input.nval;}}
}

BASIC-6 杨辉三角形 基础练习 二维数组

import java.io.*;
import java.util.Scanner;public class Main {static int[][] arr;public static void main(String[] args) {Scanner in = new Scanner(System.in);PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));int n = in.nextInt();arr = new int[n][n];for (int i = 0; i < n; i++) {for (int j = 0; j <= i; j++) {arr[i][j] = f(i, j);out.print(f(i, j) + " ");}out.println();}out.println();out.flush();}static int f(int i, int j) {if (arr[i][j] != 0) return arr[i][j];if (j == 0 || i == j) return 1;return f(i - 1, j - 1) + f(i - 1, j);}
}

BASIC-7 特殊的数字 循环 判断 数位

public class Main {public static void main(String[] args) {for (int i = 100; i < 1000; i++) {if (i == (Math.pow(i / 100, 3) + Math.pow((i / 10) % 10, 3) + Math.pow(i % 10, 3))) {System.out.println(i);}}}
}

BASIC-8 回文数 循环 判断 回文数

import java.io.*;public class Main {public static void main(String[] args) {PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));for (int i = 1000; i < 10000; i++) {String s = String.valueOf(i);if (s.equals(new StringBuilder(s).reverse().toString())) out.println(s);}out.flush();}
}

BASIC-9 特殊回文数 回文数 循环 条件语句

import java.io.*;
import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner in = new Scanner(System.in);PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));int n = in.nextInt();for (int i = 10000; i < 1000000; i++) {String s = String.valueOf(i);StringBuilder sb = new StringBuilder(s);int num = 0;for (int j : sb.chars().toArray()) num += j - '0';if (num == n && s.equals(sb.reverse().toString())) out.println(s);}out.flush();}
}

BASIC-10 十进制转十六进制 循环 整除 求余 判断

import java.io.*;public class Main {public static void main(String[] args) throws IOException {BufferedReader in = new BufferedReader(new InputStreamReader(System.in));PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));int res = Integer.parseInt(in.readLine());StringBuilder sb = new StringBuilder();if (res == 0) sb.append(0);while (res > 0) {int temp = res % 16;char c = (char) ('0' + temp);if (temp > 9) c = (char) ('A' + (temp - 10));sb = new StringBuilder(String.valueOf(c) + sb);res /= 16;}out.println(sb);out.flush();}
}

BASIC-11 十六进制转十进制 进制转换 字符处理 判断

import java.io.*;public class Main {public static void main(String[] args) throws IOException {BufferedReader in = new BufferedReader(new InputStreamReader(System.in));PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));String s = in.readLine();long res = 0;for (int i = 0; i < s.length(); i++) {int t;if (s.charAt(i) >= '0' && s.charAt(i) <= '9') {t = s.charAt(i) - '0';} else {t = s.charAt(i) - 'A' + 10;}res += t * Math.pow(16, s.length() - i - 1);}out.println(res);out.flush();}
}

BASIC-12 十六进制转八进制 进制转换 字符 循环

import java.io.*;public class Main {public static void main(String[] args) throws IOException {BufferedReader in = new BufferedReader(new InputStreamReader(System.in));PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));int n = Integer.parseInt(in.readLine());for (int i = 0; i < n; i++) {String s = in.readLine();StringBuilder temp = new StringBuilder();for (int j = 0; j < s.length(); j++) {switch (s.charAt(j)) {case '0':temp.append("0000");break;case '1':temp.append("0001");break;case '2':temp.append("0010");break;case '3':temp.append("0011");break;case '4':temp.append("0100");break;case '5':temp.append("0101");break;case '6':temp.append("0110");break;case '7':temp.append("0111");break;case '8':temp.append("1000");break;case '9':temp.append("1001");break;case 'A':temp.append("1010");break;case 'B':temp.append("1011");break;case 'C':temp.append("1100");break;case 'D':temp.append("1101");break;case 'E':temp.append("1110");break;case 'F':temp.append("1111");break;default:break;}}int mod = temp.length() % 3;if (mod == 1) temp = new StringBuilder("00" + temp);if (mod == 2) temp = new StringBuilder("0" + temp);for (int j = 0; j < temp.length(); j += 3) {int res = (temp.charAt(j) - '0') * 4 + (temp.charAt(j + 1) - '0') * 2 + (temp.charAt(j + 2) - '0');if (j == 0 && res == 0) continue;out.print(res);}out.println();}out.flush();}
}

BASIC-13 数列排序 数组 排序

import java.io.*;
import java.util.Arrays;public class Main {static QuickInput in = new QuickInput();public static void main(String[] args) throws IOException {int n = in.nextInt();int[] a = new int[n];for (int i = 0; i < n; i++) {a[i] = in.nextInt();}Arrays.sort(a);System.out.println(Arrays.toString(a).replaceAll("[\\[\\],]", ""));}static class QuickInput{StreamTokenizer input = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in)));int nextInt() throws IOException {input.nextToken();return (int) input.nval;}}
}

VIP试题

BASIC-14 时间转换 取余 数字字符混合输出

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int t = scanner.nextInt(); // 读取输入的时间(秒)int hours = t / 3600; // 计算小时int remainingSeconds = t % 3600; // 计算剩余的秒数int minutes = remainingSeconds / 60; // 计算分钟int seconds = remainingSeconds % 60; // 计算最终的秒数System.out.println(hours + ":" + minutes + ":" + seconds);}
}

BASIC-15 字符串对比 字符串 大小写

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner = new Scanner(System.in);String str1 = scanner.nextLine().trim();String str2 = scanner.nextLine().trim();// 比较字符串长度if (str1.length() != str2.length()) {System.out.println(1);} else if (str1.equals(str2)) {// 完全一致(区分大小写)System.out.println(2);} else if (str1.equalsIgnoreCase(str2)) {// 不区分大小写的情况下完全一致System.out.println(3);} else {// 即使不区分大小写也不能使这两个字符串一致System.out.println(4);}}
}

BASIC-16 分解质因数 质数分解 循环

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;public class Main {public static List<Integer> sieveOfEratosthenes(int n) {List<Integer> primes = new ArrayList<>();boolean[] isPrime = new boolean[n + 1];for (int i = 2; i <= n; i++) isPrime[i] = true;for (int i = 2; i * i <= n; i++) {if (isPrime[i]) {primes.add(i);for (int j = i * i; j <= n; j += i) {isPrime[j] = false;}}}return primes;}public static List<Integer> primeFactorization(int n, List<Integer> primes) {List<Integer> factors = new ArrayList<>();for (int prime : primes) {while (n % prime == 0) {factors.add(prime);n /= prime;}}if (n != 1) factors.add(n);return factors;}public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int a = scanner.nextInt();int b = scanner.nextInt();List<Integer> primes = sieveOfEratosthenes(b);for (int i = a; i <= b; i++) {List<Integer> factors = primeFactorization(i, primes);System.out.print(i + "=");if (factors.isEmpty()) {System.out.print(i);} else {System.out.print(factors.get(0));}for (int j = 1; j < factors.size(); j++) {System.out.print("*" + factors.get(j));}System.out.println();}}
}

BASIC-17 矩阵乘法 二维数组 循环 矩阵

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int N = scanner.nextInt();int M = scanner.nextInt();int[][] A = new int[N][N];// 读取矩阵Afor (int i = 0; i < N; i++) {for (int j = 0; j < N; j++) {A[i][j] = scanner.nextInt();}}// 计算A的M次幂int[][] result = matrixPower(A, M);// 输出结果for (int i = 0; i < N; i++) {for (int j = 0; j < N; j++) {System.out.print(result[i][j] + " ");}System.out.println();}}public static int[][] matrixMultiply(int[][] A, int[][] B) {int n = A.length;int[][] C = new int[n][n];for (int i = 0; i < n; i++) {for (int j = 0; j < n; j++) {for (int k = 0; k < n; k++) {C[i][j] += A[i][k] * B[k][j];}}}return C;}public static int[][] matrixPower(int[][] A, int M) {if (M == 0) {int n = A.length;int[][] identity = new int[n][n];for (int i = 0; i < n; i++) {identity[i][i] = 1;}return identity; // 返回单位矩阵}if (M % 2 == 1) {return matrixMultiply(A, matrixPower(A, M - 1));}int[][] halfPower = matrixPower(A, M / 2);return matrixMultiply(halfPower, halfPower);}
}

BASIC-18 矩形面积交 判断 线段交

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner = new Scanner(System.in);// 读取第一个矩形的坐标double[] a1 = new double[4];for (int i = 0; i < 4; i++) a1[i] = scanner.nextDouble();// 读取第二个矩形的坐标double[] a2 = new double[4];for (int i = 0; i < 4; i++) a2[i] = scanner.nextDouble();// 计算相交矩形的左下和右上顶点坐标double[] a3 = new double[4];a3[0] = Math.max(Math.min(a1[0], a1[2]), Math.min(a2[0], a2[2]));a3[1] = Math.max(Math.min(a1[1], a1[3]), Math.min(a2[1], a2[3]));a3[2] = Math.min(Math.max(a1[0], a1[2]), Math.max(a2[0], a2[2]));a3[3] = Math.min(Math.max(a1[1], a1[3]), Math.max(a2[1], a2[3]));// 判断是否相交if (a3[0] > a3[2] || a3[1] > a3[3]) {System.out.print("0.00");} else {// 计算交集面积double area = Math.abs(a3[2] - a3[0]) * Math.abs(a3[3] - a3[1]);System.out.printf("%.2f", area);}}
}

BASIC-19 完美的代价 贪心算法

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int n = scanner.nextInt();scanner.nextLine();char[] s = scanner.nextLine().toCharArray();int swaps = findMinSwapsToPalindrome(s, n);if (swaps == -1) {System.out.println("Impossible");} else {System.out.println(swaps);}}private static int findMinSwapsToPalindrome(char[] s, int n) {int r = n - 1, cnt = 0, idx = 0;for (int i = 0; i < r; i++) {for (int j = r; j >= i; j--) {if (i == j){if (n % 2 == 0 || idx == 1) {return -1;}idx = 1;cnt += n / 2 - i;}else if (s[i] == s[j]){for (int l = j; l < r; l++) {char t = s[l];s[l] = s[l + 1];s[l + 1] = t;cnt++;}r--;break;}}}return cnt;}
}

BASIC-20 数的读法 判断 函数

import java.util.Scanner;public class Main {private static final String[] UNITS = {"ling", "yi", "er", "san", "si", "wu", "liu", "qi", "ba", "jiu"};private static final String[] PLACE_VALUES = {"", "shi", "bai", "qian", "wan", "shi", "bai", "qian", "yi", "shi"};public static String numberToChinese(String num) {int n = num.length();StringBuilder sb = new StringBuilder();for (int i = 0; i < n; i++) {int digit = num.charAt(i) - '0';if (digit == 0) {if (n - i == 5 || n - i == 9) sb.append(" ");if (n - i != 1 && num.charAt(i + 1) != '0') sb.append("ling ");} else if ((n == 2 || n == 6 || n == 10) && digit == 1 && i == 0) {sb.append("shi ");} else {sb.append(UNITS[digit] + " " + PLACE_VALUES[n - i - 1] + " ");}}return sb.toString();}public static void main(String[] args) {Scanner scanner = new Scanner(System.in);String num = scanner.next();scanner.close();String chinese = numberToChinese(num);System.out.println(chinese);}
}

BASIC-21 Sine之舞 字符串 递归 递推

import java.util.Scanner;public class Main {private static String An(int n, int i) {if (i == n) return "sin(" + n + ")";if (i % 2 == 0) return "sin(" + i + "+" + An(n, i + 1) + ")";return "sin(" + i + "-" + An(n, i + 1) + ")";}private static String Sn(int n, int i) {if (n == 1) return An(n, 1) + "+" + i;return "(" + Sn(n - 1, i + 1) + ")" + An(n, 1) + "+" + i;}public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int n = scanner.nextInt();System.out.println(Sn(n, 1));}
}

BASIC-22 FJ的字符串 字符串 递归

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int N = scanner.nextInt();System.out.println(generateSequence(N));}public static String generateSequence(int N) {if (N == 1) {return "A";} else {char c = (char) (N - 1 + 'A');return generateSequence(N - 1) + c + generateSequence(N - 1);}}
}

BASIC-23 芯片测试 算法基础 统计 二维数组

import java.io.*;public class Main {public static void main(String[] args) throws IOException {QuickInput in = new QuickInput();PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));int n = in.nextInt();int[][] arr = new int[n][n];for (int i = 0; i < n; i++) {for (int j = 0; j < n; j++) {arr[i][j] = in.nextInt();}}for (int i = 0; i < n; i++) {int ans = 0;for (int j = 0; j < n; j++) {if (arr[j][i] == 1) ans++;}if (ans > n / 2) out.print((i + 1) + " ");}out.flush();}static class QuickInput {StreamTokenizer input = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in)));int nextInt() throws IOException {input.nextToken();return (int) input.nval;}}
}

BASIC-24 龟兔赛跑预测 数组 模拟

import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int v1 = scanner.nextInt(); // 兔子的速度int v2 = scanner.nextInt(); // 乌龟的速度int t = scanner.nextInt();  // 兔子领先t米时停止的时间int s = scanner.nextInt();  // 兔子休息的时间int l = scanner.nextInt();  // 赛道的长度int rabbitPosition = 0;int turtlePosition = 0;int time = 0;while(rabbitPosition < l && turtlePosition < l) {rabbitPosition += v1;turtlePosition += v2;time++;if (rabbitPosition == l || turtlePosition == l) {break;}if (rabbitPosition - turtlePosition >= t) {rabbitPosition -= v1 * s;}}if (rabbitPosition > turtlePosition) {System.out.println("R");} else if(turtlePosition > rabbitPosition) {System.out.println("T");} else {System.out.println("D");}System.out.println(time);}
}

BASIC-25 回形取数 二维数组 循环

import java.io.*;public class Main {static QuickInput in = new QuickInput();static PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));public static void main(String[] args) throws IOException {int m = in.nextInt();int n = in.nextInt();int[][] matrix = new int[m][n];for (int i = 0; i < m; i++) {for (int j = 0; j < n; j++) {matrix[i][j] = in.nextInt();}}int i = 1, j = 0, cnt = 1;System.out.print(matrix[0][0]);matrix[0][0] = -1;while(m * n > cnt) {while (i < m && matrix[i][j] != -1) {out.print(" " + matrix[i][j]);matrix[i][j] = -1;i++;cnt++;}i--;j++;while (j < n && matrix[i][j] != -1) {out.print(" " + matrix[i][j]);matrix[i][j] = -1;j++;cnt++;}i--;j--;while (i >= 0 && matrix[i][j] != -1) {out.print(" " + matrix[i][j]);matrix[i][j] = -1;i--;cnt++;}i++;j--;while (j >= 0 && matrix[i][j] != -1) {out.print(" " + matrix[i][j]);matrix[i][j] = -1;j--;cnt++;}j++;i++;}out.flush();}static class QuickInput {StreamTokenizer input = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in)));public int nextInt() throws IOException {input.nextToken();return (int) input.nval;}}
}

BASIC-26 报时助手 字符串 条件判断

import java.util.Scanner;public class Main {private static final String[] UNITS = {"zero", "one", "two", "three", "four", "five","six", "seven", "eight", "nine", "ten", "eleven", "twelve","thirteen", "fourteen", "fifteen", "sixteen", "seventeen","eighteen", "nineteen"};private static final String[] PLACE_VALUES = {"twenty", "thirty", "forty", "fifty"};private static void f(int n) {if (n < 20) {System.out.print(UNITS[n] + " ");} else {System.out.print(PLACE_VALUES[n / 10 - 2] + " ");int t = n % 10;if (t > 0) System.out.print(UNITS[t] + " ");}}public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int h = scanner.nextInt();int m = scanner.nextInt();f(h);if (m == 0) System.out.println("o'clock");else f(m);}
}

BASIC-27 2n皇后问题 八皇后问题 搜索

import java.util.Scanner;public class Main {static int[][] a = new int[10][10];static int[][] bj = new int[3][20];static int[][] bj1 = new int[3][20];static int n;static long sum = 0;public static void main(String[] args) {Scanner scanner = new Scanner(System.in);n = scanner.nextInt();for (int i = 0; i < n; i++) {for (int j = 0; j < n; j++) {a[i][j] = scanner.nextInt();}}f(0);System.out.println(sum);scanner.close();}public static void f2(int x) {for (int y = 0; y < n; y++) {if (a[x][y] == 1 && bj1[0][y] == 0 && bj1[1][x + y] == 0 && bj1[2][x - y + n] == 0) {a[x][y] = 3;bj1[0][y] = bj1[1][x + y] = bj1[2][x - y + n] = 1;if (x == n - 1) {sum++;} else {f2(x + 1);}bj1[0][y] = bj1[1][x + y] = bj1[2][x - y + n] = 0;a[x][y] = 1;}}}public static void f(int x) {for (int y = 0; y < n; y++) {if (a[x][y] == 1 && bj[0][y] == 0 && bj[1][x + y] == 0 && bj[2][x - y + n] == 0) {a[x][y] = 2;bj[0][y] = bj[1][x + y] = bj[2][x - y + n] = 1;if (x == n - 1) {f2(0);} else {f(x + 1);}bj[0][y] = bj[1][x + y] = bj[2][x - y + n] = 0;a[x][y] = 1;}}}
}

BASIC-28 Huffuman树 贪心 Huffuman

import java.io.*;
import java.util.PriorityQueue;public class Main {static QuickInput in = new QuickInput();static PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));public static void main(String[] args) throws IOException {int n = in.nextInt();PriorityQueue<Integer> queue = new PriorityQueue<>();for (int i = 0; i < n; i++) {queue.add(in.nextInt());}long ans = 0;while (!queue.isEmpty()) {int a = queue.poll();if (queue.isEmpty()) break;a += queue.poll();ans += a;queue.add(a);}out.println(ans);out.flush();}static class QuickInput {StreamTokenizer input = new StreamTokenizer(new BufferedReader(new InputStreamReader(System.in)));public int nextInt() throws IOException {input.nextToken();return (int) input.nval;}}
}

BASIC-29 高精度加法 数组 高精度

import java.io.*;
import java.math.BigInteger;public class Main {public static void main(String[] args) throws IOException {BufferedReader in = new BufferedReader(new InputStreamReader(System.in));PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));BigInteger a = new BigInteger(String.valueOf(in.readLine()));BigInteger b = new BigInteger(String.valueOf(in.readLine()));out.println(a.add(b));out.flush();}
}

BASIC-30 阶乘计算 高精度

import java.io.*;
import java.math.BigInteger;public class Main {public static void main(String[] args) throws IOException {BufferedReader in = new BufferedReader(new InputStreamReader(System.in));PrintWriter out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));int n = Integer.parseInt(in.readLine());BigInteger ans = new BigInteger(String.valueOf(1));for (int i = 2; i <= n; i++) {BigInteger t = new BigInteger(String.valueOf(i));ans = ans.multiply(t);}out.println(ans);out.flush();}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/756026.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

测试面试必备:HTTP请求和响应详解!

一次完整的HTTP请求过程从TCP三次握手建立连接成功后开始&#xff0c;客户端按照指定的格式开始向服务端发送HTTP请求&#xff0c;服务端接收请求后&#xff0c;解析HTTP请求&#xff0c;处理完业务逻辑&#xff0c;最后返回一个HTTP的响应给客户端&#xff0c;HTTP的响应内容同…

wireshark 使用实践

1、打开wireshark软件&#xff0c;选择网卡&#xff0c;开始抓包 2、打开浏览器&#xff0c;访问一个http网站&#xff1a;这里我用 【邵武市博物馆】明弘治十一年&#xff08;1498&#xff09;铜钟_文物资源_福建省文 测试&#xff0c;因为它是http的不是https&#xff0c;方…

【OpenWRT】x86平台安装原版OpenWRT

在当今高度互联的数字化时代&#xff0c;网络设备已经成为我们日常生活和工作中不可或缺的一部分。为了满足不同用户对网络功能的个性化需求&#xff0c;开源社区涌现出了诸多优秀的项目&#xff0c;其中 OpenWrt 便是其中之一。 OpenWrt 是一款专注于为嵌入式设备提供定制化、…

Echarts自适应大小和字体的大屏可视化方案

痛点&#xff1a; 用 Echarts 写图表&#xff0c;屏幕大小改变时&#xff0c;字体不能同步缩放&#xff0c;图表不会自动适应容器 有这个困扰的同学请给颗 star https://github.com/wj100/auto-size-echart 此方案代码量少&#xff0c;使用简单&#xff0c;接管 echarts 配置…

搜维尔科技:矿山安全多人协同仿真演练系统!

搜维尔科技&#xff1a;矿山安全多人协同仿真演练系统&#xff01; 搜维尔科技&#xff1a;矿山安全多人协同仿真演练系统&#xff01;

小型路由器,为什么四个端口的IP在一个网段?

是的&#xff0c;路由器确实在不同网段&#xff0c;不过小型路由器&#xff08;宽带路由器&#xff09;一般都是为家用设计的&#xff0c;思路就是越简单好用越好&#xff0c;逻辑上其实它只有一个WAN口和一个LAN口&#xff0c;WAN口接公网一个地址&#xff0c;LAN口接你电脑一…

手写 UE4中的 TArray

#pragma once #include<iostream> #include<stdexcept> #define CHECK_INDEX_RANGE(Index) if (Index > ElementCount) throw std::out_of_range("索引超出界限")template<typename ElementType> class TArray {typedef unsigned int uint; pri…

【Leetcode-102.二叉树的层序遍历】

题目详情&#xff1a; 给你二叉树的根节点 root &#xff0c;返回其节点值的 层序遍历 。 &#xff08;即逐层地&#xff0c;从左到右访问所有节点&#xff09;。 示例 1&#xff1a; 输入&#xff1a;root [3,9,20,null,null,15,7] 输出&#xff1a;[[3],[9,20],[15,7]]示例…

GPT实战系列-智谱GLM-4的模型调用

GPT实战系列-智谱GLM-4的模型调用 GPT专栏文章&#xff1a; GPT实战系列-实战Qwen通义千问在Cuda 1224G部署方案_通义千问 ptuning-CSDN博客 GPT实战系列-ChatGLM3本地部署CUDA111080Ti显卡24G实战方案 GPT实战系列-Baichuan2本地化部署实战方案 GPT实战系列-让CodeGeeX2帮…

linux下常见服务的搭建搜集 —— 筑梦之路

安装JDK 官网下载地址&#xff1a;https://www.oracle.com/java/technologies/downloads# 创建目录 mkdir /usr/local/java/# 解压 tar -zxvf jdk-8u333-linux-x64.tar.gz -C /usr/local/java/# 配置环境变量 vim /etc/profileexport export JAVA_HOME/usr/local/java/jdk1.8.…

【Java刷题篇】滑动窗口

文章目录 &#x1f4c3;滑动窗口&#x1f4dc;基本概念&#x1f4dc;核心思路 ✍最大连续1的个数 III✍水果成篮 &#x1f4c3;滑动窗口 &#x1f4dc;基本概念 滑动窗口是一种基于双指针的一种思想&#xff0c;两个指针指向的元素之间形成一个窗口。 分类&#xff1a;窗口有…

Unity构建详解(2)——SBP的初始设置和脚本编译

【SwitchToBuildPlatform】 核心逻辑如下 EditorUserBuildSettings.SwitchActiveBuildTarget(m_Parameters.Group, m_Parameters.Target); 直接调用切换平台的接口&#xff0c;一般来说&#xff0c;这个步骤不会执行&#xff0c;我们打包时肯定会事先将平台切换好的 【Rebu…

安卓面试网络知识基础 41-45

41. 客户端无法使用Cookie怎么办?有可能客户端无法使用Cookie,比如浏览器禁用Cookie,或者客户端是安卓、IOS等等。 这时候怎么办?SessionID怎么存?怎么传给服务端呢? 首先是SessionID的存储,可以使用客户端的本地存储,比如浏览器的sessionStorage。 接下来怎么传呢? 拼…

【物联网】Modbus 协议及应用

Modbus 协议简介 QingHub设计器在设计物联网数据采集时不可避免的需要针对Modbus协议的设备做相关数据采集&#xff0c;这里就我们的实际项目经验分享Modbus协议 简介 Modbus由MODICON公司于1979年开发&#xff0c;是一种工业现场总线协议标准。1996年施耐德公司推出基于以太…

libVLC windows开发环境搭建

1.简介 LibVLC是一个强大的开源库&#xff0c;它构成了VLC媒体播放器的核心部分。 LibVLC提供了一系列的功能接口&#xff0c;使得VLC能够处理流媒体的接入、音频和视频输出、插件管理以及线程系统等核心任务。 跨平台性&#xff1a;VLC作为一个跨平台的多媒体播放器&#x…

Java instanceof

目录 简介 示例 注意事项 应用场景 简介 instanceof 是 Java 的保留关键字也称为类型比较运算符&#xff0c;因为它将实例与类型进行比较它的作用是测试它左边的对象是否是它右边的类的实例&#xff0c;返回 boolean 的数据类型instanceof是Java中的二元运算符&#xff0c…

海外代理IP在跨境电商中的五大应用场景

在我国跨境电商的发展中&#xff0c;海外代理IP的应用日益广泛&#xff0c;它不仅帮助商家成功打入国际市场&#xff0c;还为他们在多变的全球电商竞争中保持优势。下面是海外代理IP在跨境电商中五个关键的应用场景。 1、精准的市场分析 了解目标市场的消费者行为、产品趋势以…

[蓝桥杯 2023 省 B] 飞机降落(暴搜DFS+贪心)

总结&#xff1a;为什么你看到题想不出来怎么写呢&#xff0c;我想不到这道题还会用到dfs的思想&#xff0c;顶多能知道可能会有贪心&#xff0c;还是得多做题。 这道题让我想起来导弹拦截和借教室&#xff0c;记得有空做做&#xff01;&#xff01;不要研究难题&#xff0c;把…

打造专属云存储:私有Docker Registry全面解读与实战部署

在容器技术大行其道的今天&#xff0c;Docker Registry作为容器镜像的中央仓库&#xff0c;扮演着至关重要的角色。当公开的官方镜像库无法满足企业对安全性、可控性及定制化的需求时&#xff0c;搭建私有Docker Registry就显得尤为必要。本文旨在深入剖析私有Docker Registry的…

题目15—三数之和

题目来源于LeetCode 给你一个整数数组 nums &#xff0c;判断是否存在三元组 [nums[i], nums[j], nums[k]] 满足 i ! j、i ! k 且 j ! k &#xff0c;同时还满足 nums[i] nums[j] nums[k] 0 。请 你返回所有和为 0 且不重复的三元组。 注意&#xff1a;答案中不可以包含重…