Data structure (C language version) -- diagram notes

1. Definitions and basic terms of drawings ①. Definition of graph Graph G is composed of two sets V and E, marked as G=(V,E), where V is the finite nonempty set of vertices, e is the finite set of vertex pairs in V, and these vertex pairs are symmetrical as edges. V(G) and E(G) usually represent the vertex set and edge set of graph G re ...

Added by theelectricwiz on Sun, 20 Feb 2022 16:17:45 +0200

Day 12 of MySQL Introduction (database configuration and deployment)

catalogue 12.1MySQL configuration file (1) Configuration section (2) Basic configuration (3) Memory and optimized configuration (4) Log configuration 12.2 data backup and restore (1) Data backup (2) Data restore (3) Binary log 12.3 multi instance deployment 12.4 master slave replication 12.1MySQL configuration file (1) Configu ...

Added by sun14php on Sun, 20 Feb 2022 16:11:48 +0200

Python tkinter based GUI programming

tkinter is Python's standard GUI Library ("Tk interface"). Python uses tkinter to quickly create GUI applications. Since tkinter is built into the python installation package, you can import tkinter library as long as Python is installed. Moreover, IDLE is also written with tkinter, which can cope with simple graphical inter ...

Added by and1c on Sun, 20 Feb 2022 16:02:34 +0200

Lambda function of Python

The art and Tao of Python Programming: an introduction to Python language Link to the video course "the art and Tao of Python Programming: an introduction to Python language": https://edu.csdn.net/course/detail/27845 Lambda function Lambda function is an in-line function without a name. It is often called an anonymous function. The ...

Added by deano2010 on Sun, 20 Feb 2022 15:54:40 +0200

Set the security of API interface

1, AbstractIn the actual business development process, we often encounter the need to carry out technical docking with the third party Internet Co, such as Alipay payment docking, WeChat payment docking, High German map query docking and other services. If you are an entrepreneurial Internet, most of them may be connected to other companies api ...

Added by Lillefix on Sun, 20 Feb 2022 15:47:14 +0200

[Hard Python] [Chapter 2 - asynchronous IO] 2. Execution of asynchronous tasks in event loop

Continue First words After the event loop is created, how to run the concurrent task and asynchronous IO task? ​ By asyncio The code of run shows that loop run_ until_ Complete is the method of running a collaborative process. It is defined as follows: # base_events.py class BaseEventLoop(events.AbstractEventLoop): def run_until_complete(s ...

Added by ashrust on Sun, 20 Feb 2022 15:45:08 +0200

Variable 4 in shell script

1. Definition of variables A variable is the address of an area of memory Meaning of variables The command cannot manipulate the value that changes all the time. Using a fixed string of characters to represent an unfixed target can solve this problem 2. Variable definition method in shell script Environment level: the variable becomes invalid a ...

Added by ChrisDarl on Sun, 20 Feb 2022 15:44:40 +0200

Advanced cross platform application development: uploading pictures with uni app

1, Foreword When using uni App to develop cross platform App projects, the functional requirements for uploading pictures, documents and other resources are very common: click the picture frame button to select picture upload, click each picture to preview, and click the delete icon of each picture to delete the corresponding picture. Th ...

Added by mhodge87 on Sun, 20 Feb 2022 15:27:10 +0200

Qt + OpenGL to realize 3D display of manipulator

  catalogue Realize function Realization effect Introduction to STL General idea How to make the model move? Class diagram design Core code reference material Realize function 1. Adjust the posture of the manipulator through the joint angle (joint motion) 2. Teaching point 3. Coordinate system display 4. Support 3d display of man ...

Added by Tilemachos on Sun, 20 Feb 2022 15:08:12 +0200

Collections class operation collection

Collections class operation collection Collections class is a tool class for manipulating collections such as Set,List and Map provided by Java. Collections provides many static methods for manipulating collections, with which collection elements can be implemented Sort, find, replace, and copy. The following describes the methods commonly use ...

Added by leeue on Sun, 20 Feb 2022 14:48:56 +0200