An algorithm for searching all paths between two points based on a graph's contiguity list implementation
The algorithm is implemented in C++.
Why write this algorithm? Because it is so hard to find only the implementation of the adjacency matrix on the network, I have made an implementation of the adjacency chain table myself, which can increase the speed.
This is achieved by using one of three stacks to traverse all vertices, the second stack t ...
Posted on Thu, 02 Jul 2020 11:20:08 -0400 by jsnyder2k
An algorithm for searching all paths between two points based on a graph's contiguity list implementation
The algorithm is implemented in C++.
Why write this algorithm? Because it is so hard to find only the implementation of the adjacency matrix on the network, I have made an implementation of the adjacency chain table myself, which can increase the speed.
This is achieved by using one of three stacks to traverse all vertices, the second stack t ...
Posted on Thu, 02 Jul 2020 11:19:59 -0400 by john-formby
iOS uses scripting to automate target replication
When some projects are mature, there will be a need to automate configuration to generate a completely new project, no need for developers to manually modify the project files, and transfer the configuration work directly to operations and maintenance or the configuration team
In fact, it is common practice to just change the target duplicate ...
Posted on Wed, 01 Jul 2020 12:17:15 -0400 by phpjaco
[deep eye tensorflow2.0 framework project class] 30.RNN
Recurrent neural network (RNN) is a kind of recurrent neural network which takes sequence data as input, recursion in the evolution direction of sequence and all nodes (cyclic units) are linked in chain. This paper introduces the RNN algorithm, You can have a look at this. The explanation is very clear
...
Posted on Tue, 30 Jun 2020 04:05:26 -0400 by edmore
Using Netty to implement RPC
As an asynchronous event driven network application framework, Netty can be used to rapidly develop maintainable high-performance servers and clients. The bottom layer of Dubbo, a famous RPC framework in China, uses Netty as network communication. In this article, we will explore the nature of RPC fr ...
Posted on Tue, 30 Jun 2020 00:00:16 -0400 by adams0423
Detection of pneumonia by X-ray film based on convolution neural network
Prediction of pneumonia by X-ray film based on convolution neural network
[!] the task is completed at the beginning of my freshman year, and my professional knowledge is not yet mature
1 mission objective
Understanding the lung and the types of lung diseases
Principle of X-ray inspection and c ...
Posted on Mon, 29 Jun 2020 22:29:41 -0400 by herrin
Fake TCP tunneling with scapy to improve transmission performance
Does TCP have to be TCP?It might be a trick!
It's raining so hard that you can write a joke.
I wrote two essays about this article the other day:https://blog.csdn.net/dog250/article/details/106881244https://blog.csdn.net/dog250/article/details/106955747
It is very complex to want packets to be transmitted and processed as TCP.
However, TCP ...
Posted on Mon, 29 Jun 2020 20:22:34 -0400 by albynas
STM32+ESP-01 docking with Alibaba Feiyan platform
STM32+ESP-01 docking with Alibaba Feiyan platform
In recent years, with the rapid development of microelectronics technology and computer information technology, the Internet of things technology has emerged, and the interconnection of everything is possible. At present, most consumer electronic prod ...
Posted on Sun, 28 Jun 2020 21:26:44 -0400 by spooke2k
[CV12] how to use Mask R-CNN for target detection in Keras
Article catalog
1. Mask R-CNN for Object Detection
2. Matterport Mask R-CNN Project
3. Object Detection With Mask R-CNN
3.1 install Mask R-CNN
3.2 target detection process
3.3 example of target detection
1. Mask R-CNN for Object Detection
Object Detection is a kind of computer vision task, w ...
Posted on Sun, 28 Jun 2020 21:03:50 -0400 by stretchy
Data science-05
Data analysis-05
Data analysis-05
Basic functions of matplotlib
Basic drawing
1) Drawing core API
2) Set linetype and lineweight
3) Set axis range
4) Set coordinate scale
5) Set axis
6) Legend
7) Special points
8) Remarks
Advanced drawing
1) Subgraph
2) Scatter diagram
3) Fill
4) Bar chart (bar ...
Posted on Sun, 28 Jun 2020 02:35:47 -0400 by MikeA