We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cebf79 commit bc8e248Copy full SHA for bc8e248
LinkedList/Doubly Linked List/README.md
@@ -0,0 +1,11 @@
1
+## `Available Methods in DoublyLinkedList.java`
2
+- void insertAtFirst(int n)
3
+- void show()
4
+- void void reversePrint()
5
+- void insertAtPosition(int position,int data)
6
+- void deleteFirst()
7
+- void delete(int data)
8
+- void deletelast()
9
+- void deleteAtPosition(int position)
10
+- int size()
11
+- void roatateClockwiseByK(int k)
0 commit comments