Introduction to Niuke algorithm competition notes 1

2021-10-20: I opened a new pit yesterday. I felt OK after watching the previous episodes. I regretted why I didn't follow it earlier. I felt that my knowledge system was too scattered before. It seemed that the class ended in November or December. She said that she could reach the level of icpc bronze medal. I believe it for the time being. I h ...

Posted by Dia:NL on Wed, 17 Nov 2021 05:10:22 -0800

About collections and iterators

About containers (Collection) 1. What is a container       Container is used to hold and manage objects. In life, we will use all kinds of containers. Such as pots and pans, boxes and bags. The "container" in the program also has similar functions to hold and manage data. 2. Structure of container A single instan ...

Posted by Houdini on Wed, 17 Nov 2021 04:55:37 -0800

Font reading and display of dot matrix Chinese characters and file transmission through serial port

1, Serial port transmission file 1. Serial port connection Cross connect the RXD and TXD pins of the two USB TO TTL serial ports, and connect the two USB interfaces to a laptop respectively to realize the serial port transmission between the two computers. Serial Interface is referred to as serial port for short. Serial Interface refers t ...

Posted by aunquarra on Wed, 17 Nov 2021 04:53:55 -0800

Getting to know gin framework

Introduction and use of Gin framework Gin is a web framework written in Go language. It is an API framework similar to martini but with better performance. Due to the use of httprouter, the speed is increased by nearly 40 times. If you are a performance and efficiency seeker, you will fall in love with Gin. Go is the most popular web framew ...

Posted by StroiX on Wed, 17 Nov 2021 04:51:48 -0800

python+mysql+tkinter student information management system

requirement analysis (1) Using mysql to store student and administrator information (2) The graphical interface is created through tkinter module to realize the login of the administrator, the addition, deletion, modification and query of student information, and the modification of the administrator's own password. Whole engineering class an ...

Posted by ViN86 on Wed, 17 Nov 2021 04:36:53 -0800

Getting started with thread safety and locks

Thread safety and lock use When we use multiple threads to access the same resource (which can be the same variable, the same file, the same record, etc.), if multiple threads only have read operations, thread safety problems will not occur, but if multiple threads have read and write operations on resources, thread safety problems are easy to ...

Posted by jayR on Wed, 17 Nov 2021 03:52:01 -0800

Basic operators and exercises of C language

For decimal system, for example, 1234.5 = 1 * 10 ^ 3 + 2 * 10 ^ 2 + 3 * 10 ^ 1 + 4 * 10 ^ 0 + 5 * 10 ^ - 1 (sum by weight expansion). ○ 1 other hexadecimal to decimal systems are summed according to weight expansion, such as hexadecimal 0x123=1*16^2 + 2*16^1 + 3*16^0 ○ 2 decimal to other base systems: integer part: Radix division and remainde ...

Posted by rossh on Wed, 17 Nov 2021 03:49:54 -0800

MySQL - custom variable and statement end separator

Stored program Sometimes, in order to complete a common function, many statements need to be executed. It is very annoying to enter so many statements one by one in the client each time. The uncle who designed MySQL kindly provided us with something called a stored program. This so-called stored program can encapsulate some statements, and the ...

Posted by ThEoNeTrUeAcE on Wed, 17 Nov 2021 03:30:40 -0800

Docker / docker compose instructions [notes]

Docker 1, Overview The deployment environment (Redis, ES, Hadoop...) is required to publish a project. It is very troublesome to redeploy the environment on the server and cannot cross platform. Therefore, it is processed by Docker with Windows, and finally released to Linux. Traditional: development jar, operation and maintenance deplo ...

Posted by monloi on Wed, 17 Nov 2021 03:29:33 -0800

Zabbix 3.0 from introduction to mastery (detailed explanation of zabbix use)

Author: a handsome young man  source: http://clsn.io  Chapter 1 zabbix monitoring 1.1 why monitor    When necessary, remind us in advance that there is a problem with the server    When something goes wrong, you can find the root of the problem        Website / server availability 1.1.1 website availabili ...

Posted by reli4nt on Wed, 17 Nov 2021 03:25:33 -0800