Skip to content

Commit 04f81ba

Browse files
committed
Vector
1 parent ad74cfe commit 04f81ba

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ Below topics/problems are covered as of now.
6262
- [X] [Stack based Implementation](../master/src/com/deepak/data/structures/Queue/StackBasedQueue.java)
6363

6464
**6. Vector**
65-
- [ ] Vector Introduction
66-
- [ ] Vector Implementation
65+
- [X] [Vector Introduction](../master/src/com/deepak/data/structures/Vector/VectorIntroduction.md)
66+
- [X] [Vector Implementation](../master/src/com/deepak/data/structures/Vector/CustomVector.java)
6767

6868
**7. Matrix**
6969
- [ ] Matrix Introduction

src/com/deepak/data/structures/Utils/ArrayUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Data-Structures-in-Java
2+
* Data-Structures-In-Java
33
* ArrayUtils.java
44
*/
55
package com.deepak.data.structures.Utils;

src/com/deepak/data/structures/Utils/StringUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Data-Structures-in-Java
2+
* Data-Structures-In-Java
33
* StringUtils.java
44
*/
55
package com.deepak.data.structures.Utils;
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/**
2+
* Data-Structures-In-Java
3+
* CustomVector.java
4+
*/
5+
package com.deepak.data.structures.Vector;
6+
7+
/**
8+
* Implementation of Vector
9+
*
10+
* @author Deepak
11+
*/
12+
public class CustomVector {
13+
14+
}

src/com/deepak/data/structures/Vector/VectorIntroduction.md

Whitespace-only changes.

0 commit comments

Comments
 (0)