CGB Fifth Day

while Loop Syntax Format: Loop Initial Value;                   While {loop body;   Step statement;} Execution process: first judge the Boolean expression, when the Boolean expression is true, execute the loop body and step statement, and then judge the Boolean expression again after execut ...

Posted by Benny Johnson on Wed, 08 Dec 2021 10:12:11 +0100

Experimental report on data structure personal telephone number query system

Experiment purpose and requirements Objective: by designing a personal telephone number query system, we can further be familiar with the concept, basic knowledge and skills of some binary trees, and use the basic knowledge and skills to solve simple object-oriented programming problems. Realize fast query according to the information entered b ...

Posted by lancia on Mon, 06 Dec 2021 06:10:47 +0100

Chinese translation of write ahead log

Note: the article comes from   Write-Ahead Log , the author works at Thoughtworks   Martin Fowler . This paper mainly writes "pre write log", a common technology in modern distributed database. Pre write log The persistence guarantee is provided by persisting each state change to the log in the form of command without ref ...

Posted by codersrini on Sun, 05 Dec 2021 21:24:27 +0100