Data structure experiment

1. Experimental topic      Graph is a widely used data structure, which is also the focus of this course. It is characterized by nonlinearity. The cross linked list storage structure of sparse matrix is also a storage structure of graph, so they are also included in this practice. This chapter continues to highlight the pro ...

Posted by Ruiser on Mon, 08 Nov 2021 15:33:12 -0800

Experiment 2 compilation and debugging of assembly source program of multiple logic segments

Experimental task 1 Task 1-1 Source code: assume ds:data, cs:code, ss:stack data segment db 16 dup(0) ;16 byte units are reserved, and the initial values are 0 data ends stack segment db 16 dup(0) ;16 byte units are reserved, and the initial values are 0 stack ends code segment start: mov ax, data mov ...

Posted by rheroux on Mon, 08 Nov 2021 15:28:03 -0800

Experiment 2 Writing and Debugging Assembly Source Programs for Multiple Logical Segments

1. Experimental Purpose 1. Understand and master the assembly source program for more than 8086 logical segments 2. Understand and apply flexible addressing 3. Understand the nature of loops in programming languages through the use of assembly instruction loops and understand their correct use in nested loops 4. Master debugging 8086 assembler ...

Posted by akravets on Mon, 08 Nov 2021 15:26:50 -0800

Help Find People and Objects Mutual Assistance Applet

Seventh Week Meeting Minutes Preface1. Photos of division of work among members and regular meetings2. Everyone's code and documentation 1. User login, rights management2. Publish, comment, search summary Preface This week we held our second discussion, in which we focused on the overall task and individual division of ...

Posted by bobob on Mon, 08 Nov 2021 15:14:46 -0800

Summary and sorting of Vue knowledge points

1, Comparison of Vue, angular and react three mainstream frameworks 1. Compared with angular api is simple, quick to start, and low learning cost;Angel uses two-way binding, and Vue also supports two-way binding. However, it is a one-way data flow, and the data is transmitted from the parent component to the child component in one directionIn ...

Posted by FrankHarley on Mon, 08 Nov 2021 15:09:49 -0800

Flow control of Go language

The process control of the program determines how the program is executed. There are three main process controls: Sequential control Branch control Cycle control 1, Sequential control Sequence control is the simplest process control, which emphasizes that the code is executed from top to bottom without any sequence and jump. Note that variabl ...

Posted by RedMaster on Mon, 08 Nov 2021 14:59:56 -0800

Redis Foundation (Deployment and Common Commands)

1. Introduction to Redis Redis is an open source NoSQL database written in C.Redis runs in memory and supports persistence (storage on disk). It uses key-value storage as an indispensable part of the current distributed architecture.Redis server program is a single process modelRedis services can start multiple Redis processes simultaneo ...

Posted by stolzyboy on Mon, 08 Nov 2021 14:50:14 -0800

C + + class constructors, destructors, copy constructors, and problems with implicitly instantiating objects

C + + constructors and destructors are used for object initialization and cleaning. When each class is defined, three functions will be created by default - constructors, destructors and copy constructors 1. Default constructor Constructors are similar to python's__ init__ Method, which is called automatically and only once when the class is in ...

Posted by 7pm on Mon, 08 Nov 2021 14:45:34 -0800

javabean initialization assigns default value - Reflection implements one key assignment of all fields

abstract The docking students provide a jar, and the bean s in it are 4-level nested, and there is no document. Looking at so many attributes, I feel a little confused. Accustomed to the document format of swaggger, I wonder if there is a way to realize this requirement. Did you find it online, and then did it yourself. keyword Reflect one k ...

Posted by susannah on Mon, 08 Nov 2021 14:30:47 -0800

Common data structure - tuple

1. Tuple Tuple is also a sequence composed of multiple elements in a certain order. The difference between tuples and lists is that tuples are immutable types, which means that once variables of tuple type are defined, the elements in them can no longer be added or deleted, and the values of elements can't be modified. The () literal syntax is ...

Posted by wit77 on Mon, 08 Nov 2021 14:29:15 -0800