C language: Full Score of personal account final experiment

Tip: after the article is written, the directory can be generated automatically. Please refer to the help document on the right for how to generate it Article catalog preface I spent four days, more than 460 lines of code,During this period, many things learned before were consolidated, such as linked lists, structures, etc.And learned ...

Added by pharcyde0 on Tue, 28 Dec 2021 22:59:19 +0200

Address book management system - optimized version (C language final homework course design)

Address book management system - optimized version 1, Design requirements Design a complete address book management system. The information shall at least include number, name, age, telephone number, native place, unit, etc. The functional requirements are as follows: 1. Administrator function (1) Establish address book information; (address ...

Added by fou2enve on Tue, 28 Dec 2021 09:01:10 +0200

2021-07-31 STM32F103 Buffer SPI Transfer buffer communication

SPI This article shows STM32 SPI Transfer The content involves: SPI byte data analog output independent write cache read and write Identification of USART serial port IO port input / output External interrupt processing of key 32-bit data communication, string communication, single character communication Full code: : GIT source code ...

Added by Adarmo on Mon, 27 Dec 2021 23:32:20 +0200

Branch and loop

C language is a structured programming language 1. Sequential structure 2. Select structure 3. Cyclic structure These three structures are the three structures existing in life. Sequential structure is the downward execution of sentence by sentence Select structure -- > branch statement ifswitch Loop structure -- > loop statement ...

Added by Transmission94 on Mon, 27 Dec 2021 19:37:50 +0200

OpenCV expansion and corrosion (callback function)

catalogue 1, Structural element 2, Swell 1. Principle 2. Dilation function 3. Code 4. Effect 3, Corrode 1. Principle 2. Corrosion function (erode) 3. Code 4. Effect 4, Simple operation - callback function and slider 1. Callback function 2. Slider creation 3. Code 4. Effect reference material 1, Structural element The ge ...

Added by MikeDXUNL on Mon, 27 Dec 2021 17:43:53 +0200

PTA exercise 7-8 converting strings into decimal integers (15 points) - it's easy to have ideas, but it's not easy to get it right~

overview: The overall idea of this problem is easy to think of, but it is particularly easy to make mistakes in specific implementation. This blog summarizes this problem from two aspects: easy to make mistakes and problem-solving ideas. catalogue overview: Title: Input format: Output format: Input example: Output example: 1, Proble ...

Added by pnoeric on Mon, 27 Dec 2021 06:53:02 +0200

Operation principle of LUA on C: basis

I sketch I'm studying the design and implementation of lua recently. I'm glad to share my experience with you here. If there is any mistake, please don't hesitate to give me advice. When I first learned lua, I often had these doubts: Why can lua variables point to any type?How does lua load and run dynamically? Is it compiled into machine ...

Added by jmdavis on Sun, 26 Dec 2021 23:03:59 +0200

Memory allocation of C program based on ubuntu and stm32

1, c language program memory allocation stack area It is automatically allocated and released by the compiler to store the parameter values of functions and the values of local variables. Its operation is similar to the stack in the data structure.heap Generally, it is allocated and released by the programmer. If the programmer does not re ...

Added by Bozebo on Sun, 26 Dec 2021 14:08:15 +0200

Computer experiment of data structure (Chapter 3) II

Computer experiment of data structure (Chapter III) I 1. Input n (input by the user) numbers within 10, insert them into queue i every time i(0 ≤ i ≤ 9) is input, and finally connect the non empty queues in 10 queues into a chain in the order of queue number from small to large, and output all elements of the chain. Algorithm idea: e ...

Added by rallen102 on Sun, 26 Dec 2021 12:35:17 +0200

Data structure: Comments on programming homework -- how to write more complex programs?

The child previewed the data structure course in the summer vacation and wrote an exercise. Let me comment. Let's take a look at the problems with his code. subject The topic is to write a linear table related data operation algorithm. Specifically, write a book management program. The information content of the book is as follows: code ...

Added by Trojan on Sun, 26 Dec 2021 11:47:44 +0200