Recover IP addressGiven a string containing only numbers, unpack it and return all possible IP address formats. A valid IP address consists of exactly four integers (each integer is between 0 and 255 and cannot contain leading 0), separated by '.'. For example: "0.1.2.201" and "192.168.1.1" are valid IP addresses, but "0.011.255.245", "192.168.1.312", and "[email protected]" are invalid IP addresses. Example 1:
Example 2:
Example 3:
Example 4:
Example 5:
hint:
IdeasBefore doing this question, it is best to do the task of splitting 131 into a palindrome string first. I believe that when you first see this question, you will be confused. In fact, as long as we realize that this is a cutting problem, we can use the backtracking search method to search out all possibilities for the cutting problem, which is very similar to the 131. Splitting palindrome string we just did. The cutting problem can be abstracted into a tree structure, as shown in the figure: Recover IP address Back to the trilogy
In 131. Splitting a palindrome, we mentioned that the cutting problem is similar to the combinatorial problem. startIndex is definitely required because the segmentation cannot be repeated and records the starting position of the next layer of recursive segmentation. For this question, we also need a variable pointNum to record the number of commas added. So the code is as follows:
The termination condition is different from that of 131. Splitting the palindrome string. This question clearly requires that it will only be divided into 4 segments, so the cutting line cannot be used as the termination condition to cut to the end, but the number of segments divided can be used as the termination condition. pointNum indicates the number of commas. A pointNum of 3 means that the string is divided into 4 segments. Then verify whether the fourth paragraph is legal, and if so, add it to the result set. The code is as follows:
In 131. Splitting a Palindrome String, we have already discussed how to extract substrings during loop traversal. In the for (int i = startIndex; i < s.size(); i++) loop, the interval [startIndex, i] is the intercepted substring, and it is necessary to determine whether this substring is legal. If it is legal, add a symbol after the string to indicate that it has been split. If it is illegal, end the current loop, as shown in the figure where the branch is cut off: Recover IP address Then comes the process of recursion and backtracking: When calling recursively, the startIndex of the next recursive layer should start from i+2 (because the separator needs to be added to the string), and the number of separators pointNum should be +1. When backtracking, just delete the separator . that you just added, and pointNum should also be -1. The code is as follows:
Determine whether the substring is legalThe last step is to write a function to determine whether the rank is valid. The following three points are mainly considered:
The code is as follows:
C++ CodeAccording to the backtracking algorithm, you should know this! The backtracking algorithm template given is:
You can write the following backtracking algorithm C++ code:
SummarizeThis question covers all the difficulties in splitting strings that I listed in 131. Splitting palindromes. In addition, this question also requires you to manipulate the string to add commas as separators and verify the legitimacy of the interval. It can be said to be an enhanced version of 131. Split palindrome. In the tree structure diagram of this article, I have drawn out the detailed analysis ideas. I believe that everyone will have a clearer mind after reading it! This article is reprinted from the WeChat public account "Code Random Thoughts", which can be followed through the following QR code. To reprint this article, please contact the Code Random Thoughts public account. |
<<: Virtual operators in the 5G era: new opportunities and challenges coexist
>>: What will happen to 5G base stations if power is cut off? Can operators handle the performance?
Guangzhou No. 6 Middle School is a famous key mid...
According to a report on the BBC website on Decem...
HostDare has updated new discount codes, offering...
Yesterday (March 16), Huawei stated at the "...
2019 is a crucial year for the mobile phone indus...
The development of data generation and data proce...
There are ten thousand ways for us to live in pea...
spinservers has just released this month's pr...
On September 24, during Huawei Connect 2020, Huaw...
CloudCone's 3rd anniversary event is drawing ...
At the end of 2018, the 5G frequency allocation o...
In the digital age, how to use technology to prom...
As the deadline for the cancellation of roaming c...
Everyone needs Wi-Fi at home, but for various rea...
Sharing information about several high-defense se...