更新了基础面试题文档
parent
955c13d09e
commit
4d5aae2fca
|
@ -1241,21 +1241,21 @@ class Retry(object):
|
|||
|
||||
> **点评**:烂大街的题目,基本上算是送人头的题目。
|
||||
|
||||
方法一:反向切片
|
||||
**方法一**:反向切片
|
||||
|
||||
```Python
|
||||
def reverse_string(content):
|
||||
return content[::-1]
|
||||
```
|
||||
|
||||
方法二:反转拼接
|
||||
**方法二**:反转拼接
|
||||
|
||||
```Python
|
||||
def reverse_string(content):
|
||||
return ''.join(reversed(content))
|
||||
```
|
||||
|
||||
方法三:递归调用
|
||||
**方法三**:递归调用
|
||||
|
||||
```Python
|
||||
def reverse_string(content):
|
||||
|
@ -1264,7 +1264,7 @@ def reverse_string(content):
|
|||
return reverse_string(content[1:]) + content[0]
|
||||
```
|
||||
|
||||
方法四:双端队列
|
||||
**方法四**:双端队列
|
||||
|
||||
```Python
|
||||
from collections import deque
|
||||
|
@ -1275,7 +1275,7 @@ def reverse_string(content):
|
|||
return ''.join(q)
|
||||
```
|
||||
|
||||
方法五:反向组装
|
||||
**方法五**:反向组装
|
||||
|
||||
```Python
|
||||
from io import StringIO
|
||||
|
@ -1287,14 +1287,14 @@ def reverse_string(content):
|
|||
return buffer.getvalue()
|
||||
```
|
||||
|
||||
方法六:反转拼接
|
||||
**方法六**:反转拼接
|
||||
|
||||
```Python
|
||||
def reverse_string(content):
|
||||
return ''.join([content[i] for i in range(len(content) - 1, -1, -1)])
|
||||
```
|
||||
|
||||
方法七:半截交换
|
||||
**方法七**:半截交换
|
||||
|
||||
```Python
|
||||
def reverse_string(content):
|
||||
|
@ -1304,7 +1304,7 @@ def reverse_string(content):
|
|||
return ''.join(content)
|
||||
```
|
||||
|
||||
方法八:对位交换
|
||||
**方法八**:对位交换
|
||||
|
||||
```Python
|
||||
def reverse_string(content):
|
||||
|
@ -1331,3 +1331,5 @@ def find_dup(items: list):
|
|||
```
|
||||
|
||||
> **点评**:这道题的解法和[计数排序](<https://www.runoob.com/w3cnote/counting-sort.html>)的原理一致,虽然元素的数量非常多,但是取值范围`[1000, 10000)`并不是很大,只有9000个可能的取值,所以可以用一个能够保存9000个元素的`dups`列表来记录每个元素出现的次数,`dups`列表所有元素的初始值都是`0`,通过对`items`列表中元素的遍历,当出现某个元素时,将`dups`列表对应位置的值加1,最后`dups`列表中值大于1的元素对应的就是`items`列表中重复出现过的元素。
|
||||
|
||||
更多的面试题,请移步到我的知乎专栏[《Python面试宝典》](https://zhuanlan.zhihu.com/c_1228980105135497216)。
|
Loading…
Reference in New Issue