Skip to content

feat: Binary addition algorithm added #5593

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

Merged
merged 40 commits into from
Oct 7, 2024
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
9b5ced4
Sorted Linked List added with Javadoc and tests
mjk22071998 Oct 2, 2024
1863e6b
Merge branch 'TheAlgorithms:master' into master
mjk22071998 Oct 2, 2024
e1382c1
"Added comments to SortedLinkedList.java to describe the implementati…
mjk22071998 Oct 2, 2024
3ec7627
Upgraded test from junit 4 to junit 5
mjk22071998 Oct 2, 2024
6ff74f0
Added space before braces of functions
mjk22071998 Oct 2, 2024
dd91a15
Rename SortedlinkedListTest.java to SortedLinkedListTest.java
mjk22071998 Oct 2, 2024
2c33f89
made to string null safe
mjk22071998 Oct 2, 2024
58390c1
Updated tail
mjk22071998 Oct 2, 2024
028727f
"Added assignment of `this.tail` to `newNode` in `SortedLinkedList` c…
mjk22071998 Oct 2, 2024
3dce7f0
Remove assertions for minValue and maxValue in empty list test
mjk22071998 Oct 2, 2024
9e0cdf3
tried to get link updated
mjk22071998 Oct 2, 2024
1c2bb10
"Fixed whitespace and formatting issues in SortedLinkedList.java and …
mjk22071998 Oct 2, 2024
25be88e
formatting of test file corrected
mjk22071998 Oct 2, 2024
0a5495d
Removed few whitespaces
mjk22071998 Oct 2, 2024
5693923
Merge branch 'master' into master
mjk22071998 Oct 3, 2024
16cdb60
Addressed comments by alxkm
mjk22071998 Oct 3, 2024
90c9782
"Updated toString method to include brackets and removed default Node…
mjk22071998 Oct 3, 2024
ebc8d33
tests updated
mjk22071998 Oct 3, 2024
47a725a
Merge branch 'TheAlgorithms:master' into master
mjk22071998 Oct 3, 2024
073be5a
Digit Separation algorithm added for positive numbers
mjk22071998 Oct 3, 2024
cb824f4
Merge branch 'TheAlgorithms:master' into master
mjk22071998 Oct 3, 2024
f6452c2
Renamed files
mjk22071998 Oct 3, 2024
15faa54
linter errors resolved
mjk22071998 Oct 3, 2024
278b3d0
linter styles corrected
mjk22071998 Oct 3, 2024
44b985e
Support for negative numbers added
mjk22071998 Oct 3, 2024
4f6de8a
Tests corrected
mjk22071998 Oct 3, 2024
b2bf61f
Merge branch 'master' into master
mjk22071998 Oct 3, 2024
bd7aec1
Merge branch 'TheAlgorithms:master' into master
mjk22071998 Oct 3, 2024
b233407
Merge branch 'master' into master
siriak Oct 4, 2024
18a5eff
Merge branch 'TheAlgorithms:master' into master
mjk22071998 Oct 5, 2024
1ff7d73
Merge branch 'TheAlgorithms:master' into master
mjk22071998 Oct 6, 2024
c53d8d8
feat: Added binary addition algorithm
mjk22071998 Oct 6, 2024
5ace3d0
Merge branch 'master' of https://github.com/mjk22071998/Java
mjk22071998 Oct 6, 2024
e9d9d9c
"Updated JavaDoc comment to match class name in BinaryAddition.java"
mjk22071998 Oct 6, 2024
eeb8daf
Update directory
mjk22071998 Oct 6, 2024
77d0b95
Updated test file
mjk22071998 Oct 6, 2024
c65880e
Merge branch 'master' of https://github.com/mjk22071998/Java
mjk22071998 Oct 6, 2024
516e464
clang linted
mjk22071998 Oct 6, 2024
e623c9b
tests clang linted
mjk22071998 Oct 6, 2024
774b527
Merge branch 'master' into master
siriak Oct 7, 2024
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
Prev Previous commit
Next Next commit
"Added assignment of this.tail to newNode in SortedLinkedList c…
…lass."
  • Loading branch information
mjk22071998 committed Oct 2, 2024
commit 028727f19366d58b5bb4db83072bd7a1e06a3e1c
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ else if (value < head.value) {
}
else if (value > tail.value) {
this.tail.next = newNode;
this.tail = newNode;
}
else{
Node temp = head;
Expand Down
Loading