Re-learn Array.reduce()

Recently, in the process of chopping language packages in the project, I found that a lot of repetitive work had been done, and then my colleagues pointed out the method of reducing, as if opening the door to a new world. So I relearned the use o ...

Added by nuttycoder on Tue, 27 Aug 2019 13:19:41 +0300

Summary of Intersection Learning of Convex Hull/Rotating Clamp/Half Plane

Reference Blog: https://blog.csdn.net/qq_34374664/article/details/70149223   1. Convex hull Definition: Suppose that there are several points on the plane, through which a polygon can be made, so that the polygon can "wrap up" all ...

Added by mattal999 on Tue, 27 Aug 2019 06:34:04 +0300

JavaDay11 static keyword

tags : java Foundation flag: blue @toc JavaDay11 static keyword I. Introduction of static Keyword Living conditions: Water dispensers, for example, are usually placed in a public environment where everyone uses them together. It is not said ...

Added by blackswan on Fri, 23 Aug 2019 14:13:26 +0300

Table space attributes in partitioned tables in Oracle

Partition table in Oracle is a good feature of Oracle. It can divide large tables into several small tables, so as to improve the efficiency of SQL execution for the large table, and each partition is transparent to the application.Each partition in the partition table has its own storage characteristics, including table space, PCT_FREE, etc. W ...

Added by JimChuD on Fri, 28 Jun 2019 01:56:59 +0300

Full parsing of stored procedures in mysql

1. What is a stored procedure? Stored procedures and functions are sql statements that have been compiled and stored in the database beforehand. Calling stored procedures can simplify our development. The difference between stored procedures and functions is that functions have return values and stored procedures have no return values. 2. Gra ...

Added by mgallforever on Thu, 27 Jun 2019 00:19:33 +0300

Realization of n-order Bessel Curve Formula

Realization of n-order Bessel Curve Formula If you don't know what Bessel Curve is and what it can be used for, you can go to the following article first. Bessel Curve Literacy 1. Effect Reference 2. Idea analysis The general parameter formula given in Baidu Encyclopedia is as follows: Given point P 0, P 1, P 2,... Pn, its Besse ...

Added by graham on Thu, 27 Jun 2019 00:06:22 +0300

Day 34: js summary + rewrite js calendar

Requirements: The mouse hover shows what happened this month. Events used are: onmouseover, onmouseout (the more silly method), the first time I think of this silly method. Moreover, display ing is not used, so it's a wonderful thing to make. However, my sister is a very good person, so she gave me some ideas, and today after reading the sourc ...

Added by MeanMrMustard on Mon, 24 Jun 2019 00:14:37 +0300

Notes - Advanced Java Foundation to Face Difficulties 1

Collection set The length of the array is fixed, and the length of the set is variable. Arrays store elements of the same type, which can store basic data type values. Collections store objects. And the types of objects can be inconsistent. Set framework import java.util.Collection; import java.util.ArrayList; //Common methods of Collection pu ...

Added by EvilCoatHanger on Tue, 21 May 2019 22:21:43 +0300