[audio and video] camera acquisition (2-1)
Starting from this article, the author's journey of audio and video programming is about to enter the second stage. On the basis of collecting the playable files such as desktop, microphone and speaker written as mp4|mkv, the acquisition of camera is added. The camera can replace the desktop as the video input source, or the two video streams o ...
Posted by kwong on Tue, 21 Sep 2021 16:19:34 -0700
C + + language learning summary and experience
About the language part of C + + (Information Science Orsay one pass), I myself summarized some knowledge.
Because it is too basic, I won't talk about the introduction and use of the first part of the source code.
I'll start with the second chapter, sequent ...
Posted by Onloac on Tue, 21 Sep 2021 14:18:01 -0700
C language character function and string function should learn like this!!!
preface
**This article introduces character functions and string functions, from 0 to proficient, how to reference to how to simulate the implementation. In C language, we often operate on strings, so we can call many library functions directly. However, if we want to deeply understand C language, we need to know how to realize its princip ...
Posted by superman on Tue, 21 Sep 2021 12:07:23 -0700
Codeforces Round #743 (Div. 2) (A~C)
Competition link: Click here to transfer
Link to official solution: Click here to transfer
1573A Countdown topic link: Click here to transfer
Meaning: There is a sequence, you have to change it all into 0. You can perform the following two operations to exchange elements in two positions, which is the last element minus one. Find the minim ...
Posted by fr0mat on Tue, 21 Sep 2021 03:38:55 -0700
VS code C/C + + environment configuration (the first step for novices)
When I started to review the C language recently, I thought of getting a hand-in-hand development tool. I remembered my painful experience of installing Visual Studio and decided to choose a lighter VS code. However, after downloading the VS code, it can not be used directly. I need to configure the environment. Here is my personal method for c ...
Posted by Lucnet on Tue, 21 Sep 2021 00:44:58 -0700
Should C + + return an object or a pointer to the object when brushing questions?
This paper only discusses whether to return the object or the pointer of the object when writing algorithm problems in C + +.
As we all know, C + + variables are different from java and python. C + + variables are not natural pointers, so the assignment between object type variables is much more time-consuming than java and python. For example ...
Posted by AnnieKay on Mon, 20 Sep 2021 23:04:34 -0700
❤️ Graphic C language, structure alignment, nanny level teaching, suggestions collection ❤️
catalogue
1, Alignment rules for structures
2, Acquiescence
3, Example explanation
1. Example 1
2. Example 2
3. Example 3
4. Example 4
4, Why is there memory alignment?
5, Modify the default number of alignments
6, Summary
1, Alignment rules for structures
1. The first member of the structure is alway ...
Posted by basim on Mon, 20 Sep 2021 22:30:56 -0700
✨✨✨ [C language] take you to brush questions in the shortest time (with problem-solving ideas and specific codes) and constantly update them ✨✨✨
🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷
🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷🐷
💚 BC41. Are you a genius
Description:
It is said that people with an IQ above 140 are called geniuses, KiKi If you want to know if he is a genius, please help him judge by programming. Enter an integer to indicate a person's IQ. If it is gre ...
Posted by Garcia on Mon, 20 Sep 2021 21:16:22 -0700
Jeff's seventh day of learning C + +: template (end!!!)
1, What is a template
Template is C++Automatic code generation technology in.
2, Why use templates
Problem: implement a general sorting algorithm.
C Language: it is realized through callback function, which is troublesome for users to call.
C++Language: function overloading requires the implementation of a first version for multiple ...
Posted by tonchily on Mon, 20 Sep 2021 19:57:47 -0700
Chapter V basic operations
C + + language uses operators and expressions to manipulate data. Operators are symbols used to represent various operations in programs. The high-level language uses a method similar to mathematical calculation to represent various operations, such as y = x + 10; Where y and x represent variables and = and + represent operators. An expression ...
Posted by northcave on Mon, 20 Sep 2021 07:40:49 -0700