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

1, Experimental purpose 1. Understand and master the assembly source program of more than 8086 logic segments 2. Understand and skillfully apply flexible addressing methods 3. Understand the essence of loop in programming language through the use of assembly instruction loop, and master its correct use in nested loop 4. Master the method of deb ...

Posted by 8ball on Mon, 08 Nov 2021 13:05:09 -0800

Analysis of leetcode problem solving ideas 839 - 845 questions

Similar string Give you a list of strings strs. Each string in the list is an alphabetic word for all other strings in strs. How many similar string groups are there in strs? Using the idea of joint search set, the string array is transformed into a graph to find the connected edge class Solution { public: vector<int> f; int fi ...

Posted by sonicfusion on Mon, 08 Nov 2021 13:02:00 -0800

web front end -- knowledge speed learning of Javascript

Environment construction of JavaScript Development environment: webstorm, hbulider Running environment: chrome browser code Knowledge 1 Several ways of writing JavaScript 1 2 3 4. Realize the display of data in the page 5 prompt Popup 5. Define variables // var a =1; global variable // var a =1; // alert(typeof (a) ...

Posted by DigitalDesign on Mon, 08 Nov 2021 12:57:02 -0800

[sql optimization case] index optimization

Introduction case create table test01 ( a1 int(4) not NULL, a2 int(4) not NULL, a3 int(4) not NULL, a4 int(4) not NULL ); alter table test01 add index idx_a1_a2_a3_a4(a1,a2,a3,a4); ① explain select a1,a2,a3,a4 from test01 where a1=1 and a2=2 and a3=3 and a4=4; -- Recommended writing explain select a1,a2,a3,a4 from test01 where a4= ...

Posted by chris9902 on Mon, 08 Nov 2021 12:47:05 -0800

LeetCode 2065. Maximize the path value in a graph

Here's an undirected picture for you   Figure with n   Nodes, node number from 0   To n - 1   (both included). And give you a subscript from 0   Starting integer array   values  , among   values[i]   It's number I   Value of nodes  . And give you a subscript from 0   Starting 2D inte ...

Posted by pixelsoul on Mon, 08 Nov 2021 12:43:36 -0800

leetcode299 - brush the question file every day

You are playing balls and cows with your friends. The rules of the game are as follows: Write a secret number and ask your friend to guess what the number is. Every time a friend guesses, you will give him a hint containing the following information: Guess how many digits in the number belong to the number and the exact position (called &quot ...

Posted by stenk on Mon, 08 Nov 2021 12:41:16 -0800

On the simple realization of Sanzi chess game and the method of judging the victory of N-zi chess

On the simple realization of Sanzi chess game and the method of judging the victory of N-zi chess To realize the Sanzi chess game, the following requirements need to be realized: > We need a chessboard. Since we need a chessboard, the chessboard is on a plane, so we need to create a two-dimensional arrayPrinting of chessboardPlayers play c ...

Posted by rex9990 on Mon, 08 Nov 2021 12:23:32 -0800

Spring a set of all pass 4 - persistent layer integration

Baizhi Education - Spring series courses - persistent layer integration Chapter I. persistent layer integration 1. Why does spring framework integrate with persistence layer technology 1. JavaEE The development needs the persistence layer to access the database. 2. JDBC Hibernate MyBatis There is a lot of code redundancy in the process of pers ...

Posted by RyanSmith345 on Mon, 08 Nov 2021 11:45:48 -0800

. NET ORM connection database and basic addition, deletion, modification and query

  1, Write in front Because the. net course selected this semester will be tested on the computer, summarize the methods of. net operating SqlServer data. (because my direction is Java, I don't know much about. net, but the code written below has been tested successfully) 2, . net connection database   Configure the database connectio ...

Posted by obscurr on Mon, 08 Nov 2021 11:34:13 -0800

Linux basic command learning notes

dpkg -- deb series software package management system #List the software packages in the current system dpkg -l #Install package dpkg -i packageName.deb #Uninstall package (keep profile) dpkg -r packageName #Uninstall package (delete profile) dpkg -P packageName #Lists the contents of the specified installed packages dpkg -L packageName #Repor ...

Posted by slobodnium on Mon, 08 Nov 2021 11:32:55 -0800