PTA week 3 * (1039-1041)
I've had a good time these days. I had a good time with my family and felt super bored when I was ready to go back to school. After all the updated dramas were finished, I picked a few topics that could not form a group to pass the time. I'm going to set foot on the bullet train back to school in Nanjing in the afternoon.
catalogue
1039 Cou ...
Added by promovi on Sun, 13 Feb 2022 07:04:07 +0200
2022-02-13 swipe questions and punch in every day
2022-02-13 swipe questions and punch in every day
AcWing - Fundamentals of algorithm
897. Longest common subsequence - AcWing question bank
Given two strings A and B with lengths of N and M respectively, find the longest string length of both A subsequence and B subsequence.
Input format
The first line contains two integers N and M.
The s ...
Added by ollmorris on Sun, 13 Feb 2022 06:50:17 +0200
"springcloud 2021 series" Spring Boot Admin is the simplest micro service application monitoring
Source address: https://github.com/langyastudio/langya-tech/tree/master/spring-cloud
Spring Boot Admin brief introduction
SpringBoot applications can expose various indicators in the running process of the application through the activator. Spring Boot Admin monitors the SpringBoot application through these indicators, and then presents them ...
Added by cornick on Sun, 13 Feb 2022 06:09:04 +0200
Data visualization in python application -- Summary
preface
through seven articles, we give you a general introduction to the production process of data visualization, Of course, this project is also written by Eric Matthes "Python programming from introduction to practice" is a project in the book. However, I introduce this project to you through certain features and thr ...
Added by abgoosht on Sun, 13 Feb 2022 05:51:48 +0200
shell programming -- judgment, selection, loop, interrupt, IFS
1, Judgment: if
1. Single branch mode
if Condition test
then
Command sequence
fi
if Condition test ; then
Command sequence
fi
Case:
[root@localhost jiaofan]# cat b.sh
#!/bin/bash
if [ -z $1 ]
then
echo "Error: service name not entered"
echo "Usage: script name server name"
fi
if systemctl is-active $1 &> /dev/null ; then
ec ...
Added by Thikho on Sun, 13 Feb 2022 05:46:07 +0200
Web front end development specification manual
Web front end development specification manual
1, Normative purpose
1.1 general
This document is specially made to improve the efficiency of team cooperation, facilitate the background personnel to add functions, optimize and maintain the front end in the later stage, and output high-quality documents Once the specification document is confi ...
Added by caspert_ghost on Sun, 13 Feb 2022 05:21:54 +0200
It's so beautiful. Output nice tables. You must learn this library of Python
Relevant documents
Little buddy who wants to learn Python can pay attention to the official account of Xiaobian [Python journal]. There are many resources for whoring for nothing, ha. I will update the little knowledge of Python from time to time!!
preface
Recently, I was writing a small tool in Python, which is mainly used to manage the inf ...
Added by s2j1j1b0 on Sun, 13 Feb 2022 05:20:16 +0200
Implementation of bilateral filtering mesh smoothing algorithm based on triangular normal
Welcome to more highlights Pay attention to me, learn common algorithms and data structures, solve multiple problems and reduce dimension.
The algorithm implemented in this paper comes from the following paper References: Bilateral Normal Filtering for Mesh Denoising, https://ieeexplore.ieee.org/document/5674028
Algorithm principle and proces ...
Added by voltrader on Sun, 13 Feb 2022 05:15:17 +0200
c + + multithreading learning note 1 -- multithreading related concepts and simple example functions
Process: It can be simply understood as an executable program
Thread: A process can contain multiple threads, and there must be a main thread.
Differences and connections between processes and threads: 1) The process is the smallest resource allocation unit and the thread is the smallest program execution unit. Every time a new process is est ...
Added by whisher06 on Sun, 13 Feb 2022 04:57:16 +0200
LeetCode study - day 35
Day 35
I use C + +, please forgive me for the mistakes. The original intention of this article is only to urge me to study. If I happen to be able to help you, I will be very happy.
1, 1143 Longest common subsequence
Give you an integer array of coins to represent coins of different denominations; And an integer amount, representing the t ...
Added by heepofajeep on Sun, 13 Feb 2022 04:03:44 +0200