[backtracking algorithm] data structure and algorithm

Backtracking algorithm is actually a similar exhaustive search attempt process, which is mainly to find the order of the problem in the search attempt process. When it is found that the solution conditions are not met, it will "backtrack" (i.e. backtrack) and try other paths. Therefore, backtracking method is known as "common pro ...

Posted by riex1 on Sat, 12 Feb 2022 12:06:15 +0100

Getting started with Linux system programming -- threads

1, Thread 1. Thread overview (differences from processes and advantages of threads) Multithreading development has been supported by mature pthread library on Linux platform. The most basic concepts of multithreading development include three points: thread, mutex and condition. Among them, thread operation is divided into thread creation ...

Posted by gooman on Sat, 12 Feb 2022 11:40:50 +0100

Alipay scan code payment implementation

In a project development, my business module involves Wechat code scanning payment And Alipay scan code payment. After consulting the existing technical articles, I found that many articles did not work, so I read the official documents and formed this concluding article, hoping to help readers. Alipay platform Alipay Developer Center Alipay op ...

Posted by R1der on Sat, 12 Feb 2022 11:02:51 +0100

Spring mybatis core knowledge

Write in front This is the core knowledge of spring mybatis, which can be used to review the eight part essay and deepen knowledge. It is recommended that you read it in the mode of breaking through the customs, and then check and fill the gaps according to the content. You are welcome to ask questions and learn from each other. It was done b ...

Posted by Kazlaaz on Sat, 12 Feb 2022 10:40:21 +0100

Basic knowledge points of css3

I reviewed it again from html. Today I will mainly review css3, sort out some common knowledge points, and update js, jq, vue, react, etc CSS3 is the latest CSS standard. CSS3 border Border radius: used to create fillets Box shadow: used to add shadows Border image: creates a border using a picture CSS3 background Background image: a ...

Posted by Kain Elderan on Sat, 12 Feb 2022 10:36:38 +0100

Object oriented programming in Java se

catalogue 1, Abstract class 1. Concept 2. Grammar rules 3. Some precautions 4. Role of abstract classes 2, Interface 1. Elaboration 2. Grammar rules 3. Some writing standards 4. Implement multiple interfaces 5. Inheritance between interfaces 6. Interface usage examples 7.Clonable interface and deep copy 8. Differences between inte ...

Posted by kranthi117 on Sat, 12 Feb 2022 10:33:47 +0100

[personal kivy learning notes]

Environment configuration Install Virtualenv Open CMD Install virtualenv pip install virtualenv Switch directory Switch to your work location Create virtual environment virtualenv kv-demo-env KV demo env is the interpreter Setting up the virtual environment interpreter for the compiler Install Kivy (if version replacement is ...

Posted by Slippy on Sat, 12 Feb 2022 10:33:35 +0100

Zhiting cloud disk - development guide iOS: file list and permission description

1. List of documents1.1 my file - myfileviewcontroller swiftData acquisition - acquire data through SA interface NetworkManager.shared.fileList(path: "/", page: page, page_size: 30) { [weak self] response in guard let self = self else { return } LoadingView.hide() self.tableView.mj_header?.endRefreshin ...

Posted by ianhull on Sat, 12 Feb 2022 10:28:22 +0100

Linux file status information and permissions

fstat,stat,lstat Get file status information (status). prototype #include<unistd.h> #include<sys/stat.h> #include<sys/types.h> int fstat(int fildes, struct stat *buf); int stat(const char *path, struct stat *buf); int lstat(const char *path, struct stat *buf); Write the file status information into the stat stru ...

Posted by iceomnia on Sat, 12 Feb 2022 09:59:00 +0100

Huada MCU: HC32f460 startup process and clock analysis

Huada HC32f460 startup analysis and clock configuration Statement: the personal experience written due to learning may be wrong due to limited ability software environment System: win10sdk version: hc32f460_ ddl_ Rev2. zeroData manual version: HC32F460 series user manual Rev1 21.pdfide: keil5Development board: official evaluation board ( ...

Posted by rubing on Sat, 12 Feb 2022 09:41:03 +0100