File tree 4 files changed +4
-4
lines changed
CircularDoublyLinkedList/ChatGPT_Implementation
CircularSinglyLinkedList/ChatGPT_Implementation
DoublyLinkedList/ChatGPT_Implementation
SinglyLinkedList/ChatGPT_Implementation
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- package LinkedList .CircularDoublyLinkedList .ChatGPT ;
1
+ package LinkedList .CircularDoublyLinkedList .ChatGPT_Implementation ;
2
2
3
3
class Node {
4
4
int data ;
Original file line number Diff line number Diff line change 1
- package LinkedList .CircularSinglyLinkedList .ChatGPT ;
1
+ package LinkedList .CircularSinglyLinkedList .ChatGPT_Implementation ;
2
2
3
3
class Node {
4
4
int data ;
Original file line number Diff line number Diff line change 1
- package LinkedList .DoublyLinkedList .ChatGPT ;
1
+ package LinkedList .DoublyLinkedList .ChatGPT_Implementation ;
2
2
3
3
class Node {
4
4
int data ;
Original file line number Diff line number Diff line change 1
- package LinkedList .SinglyLinkedList .ChatGPT ;
1
+ package LinkedList .SinglyLinkedList .ChatGPT_Implementation ;
2
2
class Node {
3
3
int data ;
4
4
Node next ;
You can’t perform that action at this time.
0 commit comments