Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Exercise/completed avl tree #4

Merged
merged 3 commits into from
Oct 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions avl-tree/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>tdd-exercises</artifactId>
<groupId>com.bobocode</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>avl-tree</artifactId>


</project>
4 changes: 4 additions & 0 deletions avl-tree/src/main/java/com/bobocode/AlvTree.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.bobocode;

public interface AlvTree {
}
7 changes: 7 additions & 0 deletions avl-tree/src/main/java/com/bobocode/AvlTree.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.bobocode;

public class AvlTree {
public static void main(String[] args) {
System.out.println("COMPLETED AVL TREE");
}
}
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<module>binary-search-tree</module>
<module>stack</module>
<module>linked-list</module>
<module>avl-tree</module>
</modules>

<properties>
Expand Down