-
-
Notifications
You must be signed in to change notification settings - Fork 52
WIP: Remove from a key to end #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mr-bat
wants to merge
11
commits into
myui:master
Choose a base branch
from
mr-bat:addRemoveFrom
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 6 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
1e8f54f
Add removeFrom function
mr-bat a966126
Add resetDataLength
mr-bat 55c9aa0
Add/refactor tests
mr-bat 95ac30d
Add removeFrom to BTree
mr-bat 9a5366f
Refactor redundant code
mr-bat 1d983d3
Fix _next pointer of the last leaf
mr-bat fd974be
Change remove to its previous implementation, use JDK's copyOf for re…
mr-bat ec39a20
Add braces for consistancy
mr-bat 03217aa
calculate data length after removeFrom
mr-bat 4ef6f00
Clear parent when updating root node
mr-bat f80ec12
Merge branch 'master' into addRemoveFrom
mr-bat File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,95 @@ | ||
| package btree4j; | ||
|
|
||
| import btree4j.utils.lang.ArrayUtils; | ||
| import org.junit.Assert; | ||
| import org.junit.Test; | ||
|
|
||
| import java.util.ArrayList; | ||
|
|
||
| public class ArrayUtilsTest { | ||
| // --------------- remove | ||
| @Test | ||
| public void shouldRemoveFirstValue() { | ||
| Integer[] a = {1, 2, 3}; | ||
| a = ArrayUtils.remove(a, 0); | ||
| Assert.assertArrayEquals(new Integer[]{2, 3}, a); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldRemoveLastValue() { | ||
| Integer[] a = {1, 2, 3}; | ||
| a = ArrayUtils.remove(a, 2); | ||
| Assert.assertArrayEquals(new Integer[]{1, 2}, a); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldRemoveMiddleValue() { | ||
| Integer[] a = {1, 2, 3}; | ||
| a = ArrayUtils.remove(a, 1); | ||
| Assert.assertArrayEquals(new Integer[]{1, 3}, a); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldRemoveFirstValuePrimitive() { | ||
| long[] a = {1, 2, 3}; | ||
| a = ArrayUtils.remove(a, 0); | ||
| Assert.assertArrayEquals(new long[]{2, 3}, a); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldRemoveLastValuePrimitive() { | ||
| long[] a = {1, 2, 3}; | ||
| a = ArrayUtils.remove(a, 2); | ||
| Assert.assertArrayEquals(new long[]{1, 2}, a); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldRemoveMiddleValuePrimitive() { | ||
| long[] a = {1, 2, 3}; | ||
| a = ArrayUtils.remove(a, 1); | ||
| Assert.assertArrayEquals(new long[]{1, 3}, a); | ||
| } | ||
|
|
||
| // --------------- removeFrom | ||
| @Test | ||
| public void shouldRemoveFromFirstValue() { | ||
| Integer[] a = {1, 2, 3}; | ||
| a = ArrayUtils.removeFrom(a, 0); | ||
| Assert.assertArrayEquals(new Integer[]{}, a); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldRemoveFromLastValue() { | ||
| Integer[] a = {1, 2, 3}; | ||
| a = ArrayUtils.removeFrom(a, 2); | ||
| Assert.assertArrayEquals(new Integer[]{1, 2}, a); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldRemoveFromMiddleValue() { | ||
| Integer[] a = {1, 2, 3}; | ||
| a = ArrayUtils.removeFrom(a, 1); | ||
| Assert.assertArrayEquals(new Integer[]{1}, a); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldRemoveFromFirstValuePrimitive() { | ||
| long[] a = {1, 2, 3}; | ||
| a = ArrayUtils.removeFrom(a, 0); | ||
| Assert.assertArrayEquals(new long[]{}, a); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldRemoveFromLastValuePrimitive() { | ||
| long[] a = {1, 2, 3}; | ||
| a = ArrayUtils.removeFrom(a, 2); | ||
| Assert.assertArrayEquals(new long[]{1, 2}, a); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldRemoveFromMiddleValuePrimitive() { | ||
| long[] a = {1, 2, 3}; | ||
| a = ArrayUtils.removeFrom(a, 1); | ||
| Assert.assertArrayEquals(new long[]{1}, a); | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.