DIY 485申请,想请教一些问题,求帮助!# EB23 - 劳工卡
l*s
1 楼
Given a string containing only digits, restore it by returning all possible
valid IP address combinations.
For example:
Given "25525511135",
return ["255.255.11.135", "255.255.111.35"]. (Order does not matter)
做完了,也基本bug free。但是比较迷惑于复杂度。
用递归的话,这个复杂度是多少?O(n平方)?
thx!
valid IP address combinations.
For example:
Given "25525511135",
return ["255.255.11.135", "255.255.111.35"]. (Order does not matter)
做完了,也基本bug free。但是比较迷惑于复杂度。
用递归的话,这个复杂度是多少?O(n平方)?
thx!