Format the EN markdown files.

This commit is contained in:
krahets 2024-05-01 07:28:18 +08:00
parent 12fc5e49eb
commit 99ad40ea26
2 changed files with 8 additions and 8 deletions

View File

@ -11,7 +11,7 @@ The common operations in a double-ended queue are listed below, and the names of
<p align="center"> Table <id> &nbsp; Efficiency of double-ended queue operations </p>
| Method Name | Description | Time Complexity |
| ------------- | --------------------------- | --------------- |
| ------------- | -------------------------- | --------------- |
| `pushFirst()` | Add an element to the head | $O(1)$ |
| `pushLast()` | Add an element to the tail | $O(1)$ |
| `popFirst()` | Remove the first element | $O(1)$ |