1081 check password (15 points)
1081 check password (15 points)
This question asks you to help the user registration module of a website write a small function of password validity check. The website requires that the password set by the user must be composed of no less than 6 characters, and can only have English letters, numbers and decimal points, as well ...
Posted by PHPnewby! on Fri, 31 Jan 2020 11:42:12 +0100
Infinite dimensional array C + + template class implementation, source sharing
This is an infinite dimensional array template of any object, which can realize multiple functions and do many things. The explicit dynamic construction or analysis of the generic instantiated object has a micro memory recycling method that can be used to efficiently multi-dimensional operations, such a ...
Posted by mmcb on Thu, 30 Jan 2020 16:58:58 +0100
Database (MySQL) --- MySQL query exercise (2. Practice)
– 1. Query all records in the student table SELECT * FROM student;– 2. Query the s'name, s'sex and s'class columns of all records in the student table
SELECT s_no,s_name,s_class FROM student;
– 3. Query all the units of the teacher, but do not repeat the T "department" colu ...
Posted by cemzafer on Thu, 30 Jan 2020 13:56:41 +0100
Python full stack advanced programming skills 2. Class and object depth problems and Solutions
Article directory
1, Derive built-in immutable types and modify their instantiation behavior
2, Create a large number of instances to save memory
3, with statement in Python
4, Create manageable object properties
5, Class supports comparison operation
6, Management memory in ring data structure
...
Posted by Beans on Thu, 30 Jan 2020 11:40:30 +0100
Using Python to solve two written test questions from Alibaba music system
Catalog
Catalog
Preface
Topic 1
Analysis
Realization
Topic two
Analysis
Realization
Preface
When a friend comes to Ali for an interview and shares two small questions, the blogger will try to solve them in Python when he is free. There must be many ways to realize them, and the advantages and disadvantages wi ...
Posted by SystemOverload on Wed, 29 Jan 2020 17:08:27 +0100
Talk about the priority of artemis message
order
This paper mainly studies the priority of artemis message
priority
activemq-artemis-2.11.0/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/message/impl/CoreMessage.java
public class CoreMessage extends RefCountMessage implements ICoreMessage {
//......
protected byte priority;
public byte getPriority() {
...
Posted by mrinfin1ty on Wed, 29 Jan 2020 16:46:29 +0100
Matplotlib histogram, pie
Histogram
Use the bar () function provided by Matplotlib to draw a histogram
Similar to the plot() function described earlier, every time the program calls the bar() function, a set of histogram will be generated. If you want to generate multiple sets of histogram, you can call the bar() function mult ...
Posted by sivasankari.kv on Wed, 29 Jan 2020 12:41:04 +0100
Analysis of the source code of concurrentmarksweetgeneration of Hotspot garbage collection
Contents
1, CardGeneration
1. Constructor
2,expand
3,compute_new_size
2, CMSBitMap
1. Constructor / allocate
2,mark / par_mark / mark_range / par_mark_range / mark_large_range / par_mark_large_range
3,isMarked / par_isMarked / isUnmarked /isAllClear
4,par_clear / clear_range / par_c ...
Posted by chitta_pk on Wed, 29 Jan 2020 11:35:29 +0100
Talk about scheduled delivery time of artemis
order
This paper focuses on the scheduled delivery time of artemis
HDR_SCHEDULED_DELIVERY_TIME
activemq-artemis-2.11.0/artemis-core-client/src/main/java/org/apache/activemq/artemis/core/message/impl/CoreMessage.java
public class CoreMessage extends RefCountMessage implements ICoreMessage {
//......
@Override
public Long getScheduledD ...
Posted by uramagget on Tue, 28 Jan 2020 16:52:17 +0100
hdu1828, scan line to find the rectangular side length
This problem uses scan line to get the circumference of rectangle, not including overlapping part. I can scan twice, once vertically, once horizontally, twice. I have written the bug. Now I don't know where the bug is, QAQ. I will write the bug once if I want to.
Drawing a picture to simulate the scanni ...
Posted by VTS on Tue, 28 Jan 2020 14:13:23 +0100