Latent C language -- data storage
Introduction to data types
C language type:
1. Built in type
char
short
int
long
double
float
2. User defined type (construction type)
Meaning of type:
1. Use this type to open up the size of memory space (the size determines the scope of use)
2. How to view memory space
int main()
{
int a = 10;
float f = 10.0;
return 0;
}
Dif ...
Added by SoN9ne on Fri, 11 Feb 2022 09:28:50 +0200
node.js backend koa2 framework blog project connects to mongodb database to realize simple addition, deletion, modification and query
Required software:
vscode, official website link Download: https://code.visualstudio.com/ ; (you can also use the editor you are used to) node.js, official website link Download: http://nodejs.cn/ ; Mongodb, official website download link: https://www.mongodb.com/try/download/community , we can just install the community version. (mac users ...
Added by Rommeo on Fri, 11 Feb 2022 08:56:16 +0200
[React] detailed tutorial
preface
1. Contrast between react and vue
1.1 what is modularity
It is analyzed from the perspective of code
Separate some reusable codes into separate modules; Facilitate the maintenance and development of the project
1.2. What is componentization
It is analyzed from the perspective of UI interface
Separate reusable UI elements
1 ...
Added by iainr on Fri, 11 Feb 2022 08:55:25 +0200
Data structure algorithm design problem
Linear table
1. The linear table with known length n adopts sequential storage structure. Write an algorithm to delete all elements with the value of x in the linear table. Method 1: record the number of elements equal to X in the sequence table l with k, count k while scanning L, move the elements not equal to x forward k positions, and fina ...
Added by nahla123 on Fri, 11 Feb 2022 08:53:06 +0200
Spring Certification Guide: how to persist objects and relationships in Neo4j's NoSQL data store
Original title: Spring certified China Education Management Center - learn how to persist objects and relationships in Neo4j's NoSQL data store. (spring China Education Management Center)This guide will guide you through the process of building an application using Spring Data Neo4j, which stores and retrieves data in Neo4j, a graphics based da ...
Added by mdmann on Fri, 11 Feb 2022 08:51:15 +0200
Quantitative technology of data Jun - Part 1 coming children's shoes
Children's shoes interested in quantitative techniques, especially the application of big data and artificial intelligence in quantification, can pay attention to my official account.
datahomex:
Recently, the circle of friends is full of counting money. Before, it was all about money color change. Now it shows that you are non-human with ...
Added by Sj0wKOoMel on Fri, 11 Feb 2022 08:50:52 +0200
es6 common related problems
ES6 common related problems
1. The difference between ES5 and ES6
1. The difference between var, let and const
The difference between var, let and const
1,var
In ES5, the top-level object (window object) is equivalent to the global variable. The variable declared with var is not only the global variable, but also the top-level variable Top ...
Added by Bounty on Fri, 11 Feb 2022 08:47:38 +0200
Performance optimization of Web pack packaging tool
webpack Packaging Optimization
I won't explain more about what is webpack here. If you don't know, this article is not suitable for you to read now.
webpack5 basic configuration
Let's first look at a basic configuration, webpack based on webpack 5 confing. JS file.
/*
* webpack.confing.js
*/
const { resolve } = require("path");
const ...
Added by amity on Fri, 11 Feb 2022 08:47:32 +0200
Array and sparse matrix
catalogue
1, Definition of array
1. Definition of one-dimensional array
2. Definition of two-dimensional array
2, Storage structure of array
1. Array storage mode
2. Storage mode of two-dimensional array
(1) Priority storage by row
(2) priority storage mode by column
3, Matrix
1. Definition of matrix
2. Definition of special matrix ...
Added by artyfarty on Fri, 11 Feb 2022 08:37:41 +0200
DataX tutorial (04) - complete interpretation of configuration
01 introduction
Through the previous blog posts, we know the concept and principle of DataX:
DataX tutorial (01) - getting startedDataX tutorial (02) - complete process of running dataX in IDEA (filling all pits)DataX tutorial (03) - source code interpretation (super detailed version)
This article needs to explain the configuration of Da ...
Added by hatching on Fri, 11 Feb 2022 08:35:25 +0200