leetcode circular linked list I & II
1. Circular linked list I
1.1 Title Description
The link to this question comes from leetcode
Example
Advanced and tips:
1.1.1 interface function
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*/
bool hasCycle(struct ListNode *head) {
}
1.2 general fra ...
Posted by ccgorman on Thu, 11 Nov 2021 15:15:50 -0800
Mr. Xu Haoming, Huawei sales expert and LTC expert: process is the basis of digital transformation. Take Huawei marketing LTC and Huawei iron triangle as examples
Mr. Xu Haoming, Huawei sales expert and LTC expert: process is the basis of digital transformation! Take Huawei marketing LTC and Huawei iron triangle as examples
At present, more and more enterprises are shouting "data transformation", but in fact, many enterprises are not doing well, or even just a "slogan". If they use s ...
Posted by furma on Thu, 11 Nov 2021 15:14:03 -0800
Go deep into the underlying JVM source code interpretation: HotSpot's template interpreter
This article is compiled and published by jiumo (Ma Zhi), chief lecturer of HeapDump performance community
Part 9 - definition of bytecode instructions
The previous article introduced the Java stack frame creation and bytecode dispatch logic under explanation and execution, but never talked about how the virtual machine executes the bytecode i ...
Posted by wdwtest on Thu, 11 Nov 2021 14:45:55 -0800
Java learning plan 07: collections, generics
catalogue
CollectionListSetgeneric paradigmMapCollections
Collection
Collection is the top-level interface of a singleton collection. It represents a set of objects, which are also called collection elements.JDK does not any direct implementation of this interface of the question bank, but provides more specific implementation of sub interfa ...
Posted by theex on Thu, 11 Nov 2021 14:31:17 -0800
[working direction] docker principle and common commands
preface
Basic principles and common commands of docker
virtual machine
Host OS and Guest OSSoftware such as VMWare operates the hardware directly or through the Host OS, as shown in the following figure Running multiple virtual machines will cause a lot of waste of hardware resources, and docker technology came into being
container
Differ ...
Posted by Termina on Thu, 11 Nov 2021 14:19:56 -0800
[algorithm thousand question case] daily LeetCode punch in - 75. String addition
📢 preface
🚀 Algorithm problem 🚀
🌲 Punching out an algorithm problem every day is not only a learning process, but also a sharing process 😜🌲 Tip: the problem-solving programming languages in this column are C# and Java🌲 To maintain a state of learning every day, let's work together to become the great God of algorithm ...
Posted by timmybuck on Thu, 11 Nov 2021 14:11:48 -0800
One to one relationship mapping annotation @ OneToOne application in SpringData JPA
One to one relationship mapping annotation @ OneToOne application in SpringData JPA
Spring Data JPA has one-to-one, one to many, many to many and other relationship mapping. This time, we mainly study one-to-one relationship mapping. One to one relationship mapping is very common in life. For example, a college student has only one all-in-one ...
Posted by jonemo on Thu, 11 Nov 2021 14:02:25 -0800
How to quickly implement a video call application based on React Native
Today, we will work together to develop a fluent application containing RTE (real-time interaction) scenarios.Project introductionDeveloping applications with real-time interactive functions by self-development is very cumbersome. You need to solve problems such as server maintenance and load balancing, and ensure stable low latency.So, how can ...
Posted by squiggerz on Thu, 11 Nov 2021 13:54:38 -0800
Basic logic of web pages
Logic of login interface <1> Create a web page tag for the form
    <form method="post" id="">Â
       <input type="text" id="UserNuber">
       <input type="text" id="passwo">
    </form>Â
    <button id="btnSubmit" />
(2) First write the click event of the login button, and then obta ...
Posted by eskick on Thu, 11 Nov 2021 13:38:45 -0800
swoole 2 basic concepts and long connections
1. Synchronous and asynchronous
https://www.cnblogs.com/orez88/articles/2513460.html
For the execution process of the program, it is generally executed from top to bottom, unless there will be some changes in the process control statement, but this principle will be followed in principle; For PHP, in single thread mode, a process will execute f ...
Posted by colmtourque on Thu, 11 Nov 2021 13:25:10 -0800