Go deep into the bottom! Iterative traversal and traversal of binary tree
① Traversal mode and concept of binary tree
Preorder traversal: traverse according to the head left right method, first output the head, then output the left, and finally output the right.
According to the above figure, the preceding traversal should ...
Posted by possiblyB9 on Sat, 23 Oct 2021 16:56:42 +0200
Swagger - [SpringBoot integrates swagger, configures swagger, configures scanning interface, configures API grouping]
catalogue
1, Introduction to swagge
2, SpringBoot integration Swagger
3, Configure Swagger
4, Configure scan interface
5, Configure Swagger switch
6, Configure API grouping
7, Entity configuration
8, Summary:
1, Introduction to swagge
Front and rear end separation:
  ...
Posted by xeno on Tue, 12 Oct 2021 03:40:38 +0200
SSM framework integration - achieve basic CURD effect
1. Build environment
Create a basic Maven project and import the dependencies required by the project
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven. ...
Posted by saronoff on Sun, 03 Oct 2021 21:24:03 +0200
Encryption of login information and access rights
Encryption of user password: during user registration, query whether the user exists in the database according to the transmitted information. If it does not exist, encrypt its password. The encrypted information is stored in the database. When logging in, encrypt the login password again and verify it with the encrypted information in the data ...
Posted by bettydailey on Sat, 18 Sep 2021 15:04:30 +0200
day13 object-oriented programming
1. Factory Method
What is the factory method?
Get Object by Method Call
Scenarios:
1) Users cannot create objects directly. Creating objects that are too complex can be effortless in a factory (mobile phone) (singleton)
2) Users do not want to participate in object creation
Comparison of abstract classes and interfaces
2. ...
Posted by andremta on Wed, 08 Sep 2021 04:44:33 +0200