A weekly algorithmic problem: change change change
Questions:
Known convertible change types are 1 yuan, 5 yuan, 10 yuan, 20 yuan 4 kinds, now there are 100 yuan to change into change and the total amount is less than 15 pieces, how many kinds of exchange? What are the differences?
Ideas:
Known as a n optional data set S, such as [1, 5, 10, 20], we now need to extract n numbers from it, the te ...
Posted by jdc44 on Thu, 08 Aug 2019 14:10:37 +0200
Data Structures: Using Object-Oriented Analog Arrays
Array is a commonly used data structure. Array has immutability. The length of the created array is fixed. It accesses elements in the array by index. It has fast access speed and low efficiency of deletion and addition.
Through object-oriented simulation of arrays, the simulated arrays have the following functions:
Add new elements
Exhibition ...
Posted by hykc on Wed, 07 Aug 2019 15:34:07 +0200
Oracle ILM Related (Information Life Cycle Management)
Introduction to Information Life Cycle Management
1. Concept
The concept of ILM (Information Life Cycle Management) was born in the 1960s and 1970s. It was proposed by StorageTek (acquired by Oracle in 2010). EMC is a comprehensive management method from the generation and initial storage stage of ...
Posted by whoisKeel on Wed, 07 Aug 2019 14:14:28 +0200
Red Treasure Book Notes
1. Use JavaScript in HTML
async: Load external script file, inform browser to download immediately and execute asynchronously
defer: scripts can be delayed until the document is fully parsed and displayed
noscript: The browser does not support scripts.Browsers support scripts, but scripts are disabled
2. Variables, scopes and memory problems
Du ...
Posted by LoneTraveler on Wed, 07 Aug 2019 09:17:39 +0200
July 22, 2019 (Data Structure and Search)
The test was fried!!!!!
What a ghost, xie. I'm afraid the noip will explode this year.
I haven't finished the exam yet. Let's make a summary. I really don't want to say anything in the exam today...
Write your questions carefully...
Arrange the questions according to their difficulty level first. Only problem2 is written in the exam. If there i ...
Posted by cbassett03 on Wed, 07 Aug 2019 02:41:01 +0200
Chapter 4: Functions
Chapter 4: Functions
Chapter 4: Functions
Introduction to Functions and Definition of Functions
Multiple Return Value Functions and Recursive Functions
Keyword parameters and default values of parameters
Parameter Collection and Reverse Parameter Collection
Variable scope
Local function
Practice: De ...
Posted by Castle on Tue, 06 Aug 2019 10:44:09 +0200
Unix Shell exemplification - AWK exercise
Unix Shell exemplar refines Chapter 6 - AWK utility has six exercises, from simple to complex, currently done the first three questions, the latter three questions feel very laborious to do, about loops, arrays, functions, do not know how to do.
AWK Exercise 1: Exercise 1 mainly focuses on the operation of regular expressions with patterns. So ...
Posted by jesus_hairdo on Tue, 06 Aug 2019 09:13:50 +0200
Set 9: Implementing a set of ui component libraries for pc-side vue from scratch (Pager Components)
Episode 9: Implementation from scratch (Pager Component)
This episode locates: Pager is also an old friend. Remember when I first learned js, writing a pager required 300 lines of code. If I could get back through it, I would have to teach myself design patterns.
As the status of mobile phones has been improved, most people spend more time onl ...
Posted by baby_g on Mon, 05 Aug 2019 18:10:25 +0200
Graph Theory (Not Completed)
I. Definition of Graph
Graph consists of two sets, one is a non-empty but finite vertex set V, and the other is a set E describing the relational edges between sets.Therefore, a graph can be expressed as G=(V,E). Each edge is a pair of vertices (v,w) and v,w < V.Usually | V | and | E | denote the number of vertices and the number of edges. ...
Posted by zoobooboozoo on Mon, 05 Aug 2019 06:15:00 +0200
Docker Resource Limitation
By default, a container has no resource constraints and can use all the resources scheduled by the kernel.Docke provides parameters to control the memory, CPU, and block IO used by the container when it is started.
Only memory and CPU can be controlled.
Memory
Memory is an incompressible resource
OOME
In Linxu systems, if the kernel detects ...
Posted by cohq82 on Sun, 04 Aug 2019 18:25:57 +0200