Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
bdd89f3
Added starter code, finished some of the easy methods
tobyDevOp Jan 9, 2024
906b719
Added starter code, finished some of the easy methods
tobyDevOp Jan 9, 2024
d005389
Added starter code, finished some of the easy methods
tobyDevOp Jan 9, 2024
ab7b7b2
Added starter code, finished some of the easy methods
tobyDevOp Jan 9, 2024
1bab708
Started DoublyLinkedIntList w/ fields, constructor and created addBac…
tobyDevOp Jan 16, 2024
8d4c545
Started DoublyLinkedIntList w/ fields, constructor and created addBac…
tobyDevOp Jan 16, 2024
3719c9e
Reorganized project structure
tobyDevOp Jan 17, 2024
1ba9bcf
Added printList() to DoublyLinkedIntList
tobyDevOp Jan 17, 2024
8e704fe
Created add() to DoublyLinkedIntList
tobyDevOp Jan 17, 2024
9237dae
Created removeFront() and remove() in DoublyLinkedIntList, updated pa…
tobyDevOp Jan 17, 2024
755d2d3
Created get(), contains(), indexOf(), isEmpty(), size() and clear() i…
tobyDevOp Jan 17, 2024
a9bc733
Reworked addFront(), addBack() and add(). Changed int[] field to Inte…
tobyDevOp Jan 19, 2024
881f678
Reworked addFront(), addBack() and add(). Changed int[] field to Inte…
tobyDevOp Jan 19, 2024
9bb831a
Revised project, Any advice would be helpful. Especially on LinkedInt…
tobyDevOp Jan 20, 2024
5d74be2
Ready for review. I believe this is as far as I can get with this pac…
tobyDevOp Jan 22, 2024
280b06a
Ready for review. Finished jUnit Tests LinkedIntList and correct one …
tobyDevOp Jan 27, 2024
6d57c84
Ready for review. Finished jUnit Tests for Doubly LinkedIntList and f…
tobyDevOp Jan 27, 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
299 changes: 299 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Large diffs are not rendered by default.

124 changes: 124 additions & 0 deletions .idea/uiDesigner.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions IntListReview.iml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,35 @@
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/tests" isTestSource="true" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module-library">
<library name="JUnit4">
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/junit/junit/4.13.1/junit-4.13.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
<orderEntry type="module-library">
<library name="JUnit5.8.1">
<CLASSES>
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter/5.8.1/junit-jupiter-5.8.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-api/5.8.1/junit-jupiter-api-5.8.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/opentest4j/opentest4j/1.2.0/opentest4j-1.2.0.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-commons/1.8.1/junit-platform-commons-1.8.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/apiguardian/apiguardian-api/1.1.2/apiguardian-api-1.1.2.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-params/5.8.1/junit-jupiter-params-5.8.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/junit/jupiter/junit-jupiter-engine/5.8.1/junit-jupiter-engine-5.8.1.jar!/" />
<root url="jar://$MAVEN_REPOSITORY$/org/junit/platform/junit-platform-engine/1.8.1/junit-platform-engine-1.8.1.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</orderEntry>
</component>
</module>
Loading