Kiner algorithm: hash table and bloom filter (hand tearing algorithm)
Guide to series of articles
Guide to series of articles
Open source project
All articles in this series will be included in GitHub for unified collection and management. Welcome ISSUE and Star.
GitHub portal: Kiner algorithm
preface
After understanding the underlying implementation principle of hash table, the design of hash function, the ...
Added by irishprogrammin on Sun, 23 Jan 2022 17:17:54 +0200
nodejs: the sprint from 0 to 1, the counter attack from graduate beginners to company leaders, what have you learned?
nodejs Foundation
concept
Node.js is an open source and cross platform JavaScript runtime environment. It runs outside the browser. It is an event driven asynchronous I/O single process server-side JS environment. Based on Google's V8 engine, the V8 engine executes JavaScript very fast and has very good performance.
be careful:
Nodej ...
Added by keefy on Sun, 23 Jan 2022 01:17:41 +0200
JS bluff the interviewer to get a high salary
The author has been systematically combing the knowledge of native JS recently, because I think JS, as the fundamental technology of front-end engineers, can't be learned too many times. I plan to make a series driven by a series of questions. Of course, there will be questioning and expansion. The content is systematic and complete. It will im ...
Added by manianprasanna on Sun, 23 Jan 2022 00:25:03 +0200
WebGIS programming: Openlayers map printing
The simplest function of map printing on the Web side is to output the map within the current window, that is, export the current map as a picture and store it to the client. Different browsers provide their own screen capture functions, and the function of exporting maps can also be realized based on the screen capture function of the browser ...
Added by WindomEarle on Sun, 23 Jan 2022 00:21:55 +0200
Fluent frame analysis Constraint
1. Preface
stay Fluent framework analysis (IV) - RenderObject In this article, we briefly introduced the core rules of RenderObject layout in fluent. Constraint is down, Size is up, and the parent node sets the position of this node. In this article, we will analyze this rule in detail.
2. Analysis of layout principles
The core rules of Rend ...
Added by tet3828 on Sat, 22 Jan 2022 23:45:33 +0200
CSS learning notes 1 - basic syntax and style sheet
1, Basic introduction to CSS
CSS (Cascading Style Sheets) Cascading Style Sheets is a presentation standard language in WEB standards. It is mainly used to modify the display style of WEB information. At present, it is recommended to follow CSS 3.0 released by W3C. The most basic thing is to learn the writing method of CSS 2.0.
2, Basic g ...
Added by v1ral on Sat, 22 Jan 2022 21:30:17 +0200
Spring MVC learning notes [part5] local file upload
Spring MVC learning notes Part5
1. Principle of file upload
This section will review the traditional file upload methods of Java Web and learn the more convenient file upload components provided by spring MVC. First, let's review some pre knowledge of file upload.
The enctype value of the form must be: multipart / form data (the default valu ...
Added by Markto on Sat, 22 Jan 2022 20:47:01 +0200
Front end development summary
Front end development interview - Introduction to test questions
JS part
Explain variable promotion
The JavaScript engine obtains all declared variables by parsing the code first, and then runs down line by line. Therefore, a problem is that all statements declared by variables will be promoted to the top of the code, which is called variabl ...
Added by drath on Sat, 22 Jan 2022 17:42:17 +0200
Kiner algorithm: deep search (DFS) and wide search (BFS): first understanding the problem state space (hand tearing algorithm)
Guide to series of articles
Guide to series of articles
Open source project
All articles in this series will be included in GitHub for unified collection and management. Welcome ISSUE and Star.
GitHub portal: Kiner algorithm
preface
After understanding the core concept of search algorithm, knowing what problem solving tree is, and masteri ...
Added by scottb1 on Sat, 22 Jan 2022 15:38:33 +0200
Basic use of React (single page and interview questions about jsx, syntax specification)
Basic use of React!
React introduction! React is a JAVASCRIPT library for building user interfaces. React is mainly used to build UI. Many people think that react is the V (view) in MVC. React originated from Facebook's internal project to build Instagram's website, and was open source in May 2013. React has high performance and simple code lo ...
Added by Daveg on Sat, 22 Jan 2022 13:26:06 +0200