Training - Enumeration, simulation and sorting

preface Enumeration and simulation are the most common contents of the Blue Bridge Cup. Then, if you sort, you won't investigate the handwriting of the quick row, but you will check, merge and sort. When the Blue Bridge Cup inspected the line segment tree, most of them were written with violence. Greed and number theory have been investi ...

Added by phpnewbie1979 on Thu, 24 Feb 2022 16:36:35 +0200

Web front end interview question collection

, Tiankeng began to look for internships. I'm not good enough. I'll sum up relevant knowledge while looking at other people's experience. I HTML/5 II CSS/3 2.1 there are many li tags and the order is not fixed. How to change the last li with class b to red <ul> <li class="a" /> <li class="b" /> <li class="b ...

Added by Emir on Thu, 24 Feb 2022 16:28:11 +0200

java official website tutorial (server)

Concurrency - the Java platform has APIs to help you develop multithreaded programs Computer users take it for granted that their system can do more than one thing at a time. They assume that they can continue to work in the word processor, while other applications download files, manage print queues, and stream audio. Even a single applicatio ...

Added by TheUnknown on Thu, 24 Feb 2022 16:12:15 +0200

Advanced area of attack and defense world experts - stack2

Advanced area of attack and defense world experts - stack2 Look at the title, nothing 1, Analysis file checksec It is found that there is stack overflow protection, which has not been seen before. There may be new knowledge points. Run file It seems to be a program for inputting numbers to calculate the average value. ida open unsig ...

Added by minifairy on Thu, 24 Feb 2022 15:59:12 +0200

Grey correlation method -- matlab

catalogue 1. Introduction 2. Detailed explanation of algorithm 2.1 data standardization 2.2} calculate the grey correlation coefficient 2.3 calculation of grey correlation coefficient 3. Case analysis 3.1 reading data 3.2 data standardization 3.3} draw the broken line diagram of x1, x4, X5, X6 and X7 3.4 grey correlation coefficient ...

Added by christh on Thu, 24 Feb 2022 15:56:49 +0200

day9 summary and assignment

day9 summary I aggregate Cognitive set A collection is a container type data type. Take {} as the flag of the container. Multiple data in it are separated by commas: {data 1, data 2, data 3,...} Variable (support addition, deletion and modification); Unordered (subscript operation is not supported) Requirements for elements: 1 Must be immuta ...

Added by acirilo on Thu, 24 Feb 2022 15:13:35 +0200

day9 string job

Enter a string and print all characters in odd digits (subscripts are characters in bits 1, 3, 5, 7...) For example, input 'abcd1234' and output 'bd24' strs=input('Please enter a string:') c='' for i in range(1,len(strs),2): c+=strs[i] print(c) Enter the user name and judge whether the user name is legal (the length of th ...

Added by PTS on Thu, 24 Feb 2022 14:47:03 +0200

System learning TypeScript - basic type

prefaceThe basic types contained in TypeScript can be summarized as follows:Boolean valuenumbercharacter stringarraytupleenumerationArbitrary valueNull valueNull and undefinedNeverObjectToday, let's learn more about the meaning and representation of various types.boolean → booleanIt has only two values -- true and false.let isNew: boolean ...

Added by chadt on Thu, 24 Feb 2022 14:40:49 +0200

Spring Cloud microservice Architecture - getting started creating parent project

I Spring Cloud microservice architecture 1. What is micro service The foundation of microservice architecture (MSA) is to split a single application into multiple independent small services, which can be developed, deployed and run independently. 2. Core component analysis Spring Cloud Alibaba provides the following core functions by defaul ...

Added by navarre on Thu, 24 Feb 2022 14:30:58 +0200

System learning TypeScript - basic type

preface The basic types contained in TypeScript can be summarized as follows: Boolean valuenumbercharacter stringarraytupleenumerationArbitrary valueNull valueNull and undefinedNeverObject Today, let's learn more about the meaning and representation of various types. boolean → boolean It has only two values -- true and false. let i ...

Added by stringfield on Thu, 24 Feb 2022 14:25:25 +0200