dlib+VS2019 generate pit record (Windows10 environment)

dlib+VS2019 generate record 1. Prepare tools VS2019 Please refer to VS2019 installation and use tutorial (super detailed) cmake Download address It corresponds to the decompressed version and the hard disk installation version respectively. After decompressing the decompressed version, you shouUTF-8...

Posted by hlstriker on Wed, 05 Jan 2022 17:40:55 +1030

[3] Vcpkg usage_ 1vcpkg integration into visual studio

brief introduction target Integrate vcpkg in vs2019. Basic reading Familiar with computer. Fast reading Skip the part you know. Environmental description Windows 7 or laterGitVisual Studio 2015 Update 3 or later (including English language pack) What is integration? Vcpkg has installed some thUTF-8...

Posted by rushenas on Tue, 01 Mar 2022 17:37:08 +1030

Design and implement "Caesar password" -- simple version

Classical cryptography experiment For example, when "Peace and Love = 7", the text is encrypted. 1. (not case sensitive, but able to recognize spaces and punctuation; 2. Do not call existing libraries and functions, and implement them by programming. preface For example, with the continuous devUTF-8...

Posted by miniu on Fri, 18 Mar 2022 03:38:30 +1030

2022 chunnanna University programming foundation OJ answer reference independent training task

Problem 1 Title Description Write recursive function, find the classical polynomial sequence of Hermitian (Hermite) polynomials n+1 item Hn(x) value, and in main function call, output results. Hn(x) is defined as: H0(x) = 1 H1(x) = 2x Hn(x) = 2xHn-1(x) – 2(n-1)Hn-2(x) (n > 1) input Two numbers.UTF-8...

Posted by dennisjade on Sat, 19 Mar 2022 19:07:45 +1030

Linux vs2okeno test platform (202cm2okeno)

VS2022 cross platform Linux CMake project construction process 1. Environmental preparation Development machine: Vs2022 (supported by vs2019 16 and above) Download address: https://visualstudio.microsoft.com/zh-hans/vs/ It should be noted that the Linux development load should exist. Check accoUTF-8...

Posted by musclehead on Wed, 23 Mar 2022 15:48:16 +1030

Linux C foundation - day04

catalogue preface 1, Variable 1. Definition rules 2. Local variables 3. Global variables 4. Keywords 4. Static and dynamic variables 2, Structure 1. Access member variables 2. Structure pointer 3. Memory space size 3, Memory management 1. Static memory 2. Dynamic memory 4, Bitwise operators andUTF-8...

Posted by cicibo on Wed, 13 Apr 2022 02:56:12 +0930

Advanced pointer

Next, the pointer array stores the pointer char *arr[5]; Array pointer is a pointer to an array int arr[5]; //arr is an integer array. Each element is of type int and has five elements int* parr1[10]; //parr1 is an array with 10 elements, and the type of each element is int* int(*parr2)[10]; //UTF-8...

Posted by Virvo on Sat, 16 Apr 2022 21:28:20 +0930