Skip to content

Commit aa7056e

Browse files
committed
refactor; linked lists packaging
1 parent eb54d94 commit aa7056e

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,10 @@
109109
- [x] [Find largest sub-list formed by consecutive integers](http://www.techiedelight.com/find-largest-sub-array-formed-by-consecutive-integers/)
110110

111111
### Linked Lists
112-
113-
<!-- Singly, doubly, circular linked list problems -->
114-
112+
#### Singly Linked Lists
115113
- [x] Find the middle element of a linked list
116-
114+
#### Doubly Linked Lists
115+
#### Circular Linked Lists
117116
### Stack (LIFO)
118117

119118
- [x] Implement a stack using two queues
@@ -131,13 +130,9 @@
131130
### Matrix
132131

133132
### Trees
134-
135-
<!-- Binary trees, BSTs, traversals, etc. -->
136-
133+
- [ ] [Same Tree](https://leetcode.com/problems/same-tree/)
137134
### Heaps
138135

139-
<!-- Min-heap, max-heap, priority queue problems -->
140-
141136
## Multithreading
142137

143138
- [x] Solve the producer-consumer problem using multithreading
@@ -429,7 +424,6 @@
429424
- [ ] [Shortest Common Supersequence | Finding all SCS](http://www.techiedelight.com/shortest-common-supersequence-finding-scs/)
430425
- [ ] [Shortest Common Supersequence | Using LCS](http://www.techiedelight.com/shortest-common-supersequence-using-lcs/)
431426
- Tree
432-
- [ ] [Same Tree](https://leetcode.com/problems/same-tree/)
433427
- [ ] [Subtree of Another Tree](https://leetcode.com/problems/subtree-of-another-tree/)
434428

435429
- Binary Tree

src/dataStructures/linkedLists/singleLL/middleOfLinkedList/MiddleOfLinkedList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dataStructures.linkedLists.middleOfLinkedList;
1+
package dataStructures.linkedLists.singleLL.middleOfLinkedList;
22

33
import java.util.ArrayList;
44
import java.util.List;

src/dataStructures/linkedLists/singleLL/middleOfLinkedList/Node.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dataStructures.linkedLists.middleOfLinkedList;
1+
package dataStructures.linkedLists.singleLL.middleOfLinkedList;
22

33
public class Node {
44
int data;

0 commit comments

Comments
 (0)