-
https://github.com/oprangac/ASDC/blob/bf43a63bcb6e0536e29b2969fb0f4659bf33b237/.gitignore
*.exe adaugă. Șterge fișierele existente exe prin `git rm --cached`
---
https://github.com/oprangac/A…
-
Hey assign me this to add Liked list questions of easy, medium and hard level.
-
go over linked-list related problems
-
Problems selected by LeetCode for the topic _Linked List_ 🌐
Click ✔️ to go to each solution.
The Link to each problem🌐 is at the top of each solution.
#### [🔗](https://leetcode.com/explore/lear…
hon9g updated
4 years ago
-
1. basic
2. application
**DEADLINE**
7/26 (THU)
-
-
On our webpage we would like to show for each research area a list of related publications. However, with the shortcode
`[cris-custom show="fields" field="..."]#publications#[/cris-custom]`
we only …
-
Reverse Linked List
```
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {…
-
-
- 单向链表
- 单向循环链表
- 双向链表
```javascript
class Node {
constructor(data) {
this.data = data;
this.prev = null;
this.next = null;
}
}
class LinkedList {
con…