LinkedList Principle and Source Code Analysis
brief introduction
LinkedList is a two-way linear linked list, but it does not store data in a linear order, but a pointer (Pointer) to the next node in each node. Since it is not necessary to store in sequence, the linked list can achieve O(1) complexity when inserted, which is much faster than another linear table sequence table, but it t ...
Added by derrtyones on Mon, 17 Jun 2019 02:25:09 +0300
Gulp Introduction Guide
Introduction to Gulp
Chinese homepage: http://www.gulpjs.com.cn/
gulp is a front-end project-building tool similar to grunt, and also an automatic task Runner Based on Nodejs
Automatically complete javascript/coffee/sass/less/html/image/css and other files
Tasks of merging, compressing, checking, monitoring file changes, browser automa ...
Added by Iki on Mon, 17 Jun 2019 00:01:49 +0300
23 Design Patterns (6) - Adapter Patterns
Adapter mode
1. Overview
2. Use of adapter mode
3. Role in Patterns
4. Realization
5. Trade-off between class adapter and object adapter
6. Default adaptation mode
1. Overview
The adapter pattern transforms the interface of one class into another that the client expects, so that two classes that could not work together because of ...
Added by jrolands on Sat, 15 Jun 2019 04:41:02 +0300
TensorFlow Practice: Classical CNN-AlexNet
Copyright Statement: This article is the original article of the blogger. The source of reprinting should be indicated.
AlexNet
AlexNet was introduced in 2012, and it won the ILSCRC championship in 2012 by a significant margin.
AlexNet applies the basic principles of CNN to deeper networks and adds some new technologies:
1. ReLU ...
Added by maddog720 on Sat, 15 Jun 2019 04:23:36 +0300
Android Gson Details (IV)
Type Adapter
Type Adapter is an abstract class provided by Gson since version 2.0 (source annotations say 2.1) to take over some type of serialization and deserialization process. It contains two annotation methods, write(JsonWriter,T) and read(JsonReader), and other methods are final methods and finally invoke these two abstract methods.
...
Added by jbachris on Sat, 15 Jun 2019 01:43:29 +0300
Backup and restore of SVN (subversion)
A version control software commonly used in development is SVN. Sometimes the content of a version controller needs to be backed up/restored or migrated. Although it is rarely used, once used, the knowledge should be mastered.
Environment: CentOS 6.6
There are three ways to backup and restore svn, the first two are highlighted here:
Offici ...
Added by abriggs on Fri, 14 Jun 2019 20:49:06 +0300
Storage of plsql-based code in the first root traversal tree with layer number
This article is from Li Mingzi's csdn blog( http://blog.csdn.net/free1985 For commercial reprints, please contact the blogger for authorization. For non-commercial reprints, please indicate the source.
Abstract: this paper introduces the implementation of plsql-based code storage in the first root traversal tree with layer number. The code in ...
Added by Replika on Fri, 14 Jun 2019 01:47:13 +0300
Go Learning Notes (2) Start in Ten Minutes
Add Golang Learning QQ Group to Learn Progress, Start a Family and Start a Business Job ^-^ Group Number: 96933959
Variable-Constant
variable
Variable names consist of letters, numbers and underscores, and cannot begin with numbers.
...
var (
A int //Default is 0
B string //Default is""
C bool //Default is false
...
Added by biscutty on Fri, 14 Jun 2019 01:09:30 +0300
Summary of webpack2
This article github warehouse: https://github.com/Rynxiao/webpack2-learn
Migration from v1 to v2
1. Configuration type
In webpack1, configuration is done mainly by exporting a single object. For example, the following configuration:
// Export mode of webpack1
module.export = {
entry : 'app.js',
output : { */... */},
/* ... */
};
In ...
Added by David4321 on Thu, 13 Jun 2019 21:09:08 +0300
web Learning Notes 12 - Mobile Simple Elevator Effect
After two months of separation, I had a short break. Recently, I just joined a new company and started to do some business projects. It was also interesting. Before that, jquery was used less and its foundation was weak. In the new project, I was in the process of gradual tutoring. These two days, just to achieve the relevant elevator effect, ...
Added by jbol on Thu, 13 Jun 2019 03:11:38 +0300