reorganized the catch-all others and misc packages into thematic pack…#7493
Open
snabxo wants to merge 4 commits into
Open
reorganized the catch-all others and misc packages into thematic pack…#7493snabxo wants to merge 4 commits into
snabxo wants to merge 4 commits into
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #7493 +/- ##
============================================
- Coverage 79.89% 79.87% -0.03%
+ Complexity 7344 7341 -3
============================================
Files 809 809
Lines 23850 23853 +3
Branches 4699 4700 +1
============================================
- Hits 19055 19052 -3
- Misses 4036 4039 +3
- Partials 759 762 +3 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Author
|
resolved the infer warnings. do I have to resolve the pmd warnings as well? @DenizAltunkapan @yanglbme @alxkm |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Organized the algorithms and data structures in the catch all and misc packages into their respective packages.
Related Issue
Fixes #7452
Changes Made
MiniMaxAlgorithm.javatosrc/main/java/com/thealgorithms/backtracking/BrianKernighanAlgorithm.javatosrc/main/java/com/thealgorithms/bitmanipulation/CRC16.java,CRC32.java,CRCAlgorithm.java,Damm.java,Luhn.java,Verhoeff.javatosrc/main/java/com/thealgorithms/checksums/Huffman.javatosrc/main/java/com/thealgorithms/compression/MapReduce.javatosrc/main/java/com/thealgorithms/datastructures/ArrayLeftRotation.java,ArrayRightRotation.java,BFPRT.java,BoyerMoore.java,InsertDeleteInArray.java,MaximumSumOfDistinctSubarraysWithLengthK.java,MosAlgorithm.java,RangeInSortedArray.java,ShuffleArray.java,ThreeSumProblem.java,TwoPointers.java,TwoSumProblem.javatosrc/main/java/com/thealgorithms/datastructures/arrays/Dijkstra.java,PageRank.javatosrc/main/java/com/thealgorithms/datastructures/graphs/PalindromeSinglyLinkedList.javatosrc/main/java/com/thealgorithms/datastructures/lists/MedianOfRunningArray.java,MedianOfRunningArrayByte.java,MedianOfRunningArrayDouble.java,MedianOfRunningArrayFloat.java,MedianOfRunningArrayInteger.java,MedianOfRunningArrayLong.java,QueueUsingTwoStacks.javatosrc/main/java/com/thealgorithms/datastructures/queues/LinearCongruentialGenerator.javatosrc/main/java/com/thealgorithms/devutils/generators/PasswordGen.javatosrc/main/java/com/thealgorithms/devutils/generators/SkylineProblem.javatosrc/main/java/com/thealgorithms/divideandconquer/KochSnowflake.java,LineSweep.java,PerlinNoise.javatosrc/main/java/com/thealgorithms/geometry/IterativeFloodFill.javatosrc/main/java/com/thealgorithms/graph/ColorContrastRatio.java,Conway.java,FloydTriangle.java,GaussLegendre.java,LowestBasePalindrome.java,Mandelbrot.java,PalindromePrime.javatosrc/main/java/com/thealgorithms/maths/Sparsity.javatosrc/main/java/com/thealgorithms/matrix/BankersAlgorithm.java,MemoryManagementAlgorithms.javatosrc/main/java/com/thealgorithms/memorymanagement/CountFriendsPairingTest.javain others test toSecondCountFriendsPairingTest.javato avoid name conflict atsrc/test/java/com/thealgorithms/datastructures/dynamicprogramming/KadaneAlogrithmTest.javain others test toSecondKadaneAlgorithmTest.javato avoid name conflict atsrc/test/java/com/thealgorithms/datastructures/dynamicprogramming/Dijkstra.javato DijkstraGraph to avoid name conflict with Graph inConnectedComponent.javainsrc/main/java/com/thealgorithms/datastructures/graphs/miscandotherspackages after the move in main and test.Checklist