File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change 1- # Methods
1+ ## ** ` Available Methods in the linked list ` **
2+ - void insert (int data)
3+ - void show()
4+ - void insertAtFirst (int data)
5+ - void insert (int position, int data)
6+ - void delete (int position)
7+ - void deleteAtLast ()
8+ - void size ()
9+ - boolean isNodeExists (int val)
10+ - void rotateClockwise (int k)
11+ - void rotateAntiClockwise (int k)
12+ - void reverse ()
13+ - void recursionReversePrint ()
14+ - void recursionReverseLinkedList ()
15+ - void getMiddleElement ()
16+ - boolean isFirstSecondHalfMatch ()
17+ - boolean ispalindrome ()
18+ - void deleteList ()
19+ - void deleteGreaterValuesOnRight ()
20+ - void pairwiseSwapElements ()
21+ - void deleteAlternateNodes ()
22+ - void moveLastNodeTOFront ()
23+ - int getCountOfValue (int number)
24+ - void seperateEvenodd ()
You can’t perform that action at this time.
0 commit comments