Data Structures - 8 | Doubly-Linked List | Tamil

  Рет қаралды 34,767

CS in Tamil

CS in Tamil

Күн бұрын

Пікірлер: 21
@Yeswanth
@Yeswanth 3 жыл бұрын
vera level bro
@JD-eb5qu
@JD-eb5qu 2 жыл бұрын
Super clear explanation
@Kolaru_Edit
@Kolaru_Edit Жыл бұрын
Good tricks thankyou💓💗💗
@sadhasivam5275
@sadhasivam5275 3 жыл бұрын
Bro, can you guide as getting programs related to Data structure
@technipavi5887
@technipavi5887 Жыл бұрын
Thanks a Trillion sir ✨
@salmansharif8379
@salmansharif8379 3 жыл бұрын
Thanks ❤️
@lovebeats649
@lovebeats649 3 жыл бұрын
Circular link list advantage and disadvantage explain bro
@southkorea1952
@southkorea1952 2 жыл бұрын
Anna rules sollum pothu each key la oru value than store panna mudium nu soneenga but last closed addressing la same key laye 2 values panrome.... athu epdi na kolambuthu 😭
@SanjayPrabhakaran-yo1vq
@SanjayPrabhakaran-yo1vq 6 ай бұрын
super brooo
@vennilat7786
@vennilat7786 3 жыл бұрын
Nice
@wiz520
@wiz520 3 жыл бұрын
Thanks thala
@padminil2315
@padminil2315 4 ай бұрын
Good
@KLT_Sathish
@KLT_Sathish 4 ай бұрын
👏👏👏...
@mohamednoohumiqdad6909
@mohamednoohumiqdad6909 6 ай бұрын
Coding yenga bro?
@spacenext.
@spacenext. 15 минут бұрын
// Definition for linked list. function RandomListNode(data){ this.data = data; this.next = null; this.random = null; } module.exports = { //param head : head node of linked list //return the head node in the linked list copyRandomList : function(head){ if (!head) return null; // Step 1: Create new nodes and interweave them with the original list let current = head; while (current) { let newNode = new RandomListNode(current.data); newNode.next = current.next; current.next = newNode; current = newNode.next; } // Step 2: Set the random pointers for the new nodes current = head; while (current) { if (current.random) { current.next.random = current.random.next; } current = current.next.next; } // Step 3: Separate the original and copied lists let original = head; let copy = head.next; let copyHead = copy; while (original && copy) { original.next = original.next.next; copy.next = copy.next ? copy.next.next : null; original = original.next; copy = copy.next; } return copyHead; } };
@mathproof1574
@mathproof1574 Жыл бұрын
👌👍
@sreedharsancbe807
@sreedharsancbe807 Жыл бұрын
@kumarankd3587
@kumarankd3587 Жыл бұрын
singly linked list poodu pro
@selvabadass
@selvabadass 4 ай бұрын
bro linked list tha singly linked list bro😂
@___its___my___life___journey__
@___its___my___life___journey__ 3 ай бұрын
Both are same
@vigneshjaya9058
@vigneshjaya9058 3 жыл бұрын
Exam la ealuthura mari theoretical aa explain pannu bro
Data Structures - 9 | Dictionaries (with Hash Table) | Tamil
19:31
Data Structures - 7 | Linked List | Tamil
17:39
CS in Tamil
Рет қаралды 91 М.
She made herself an ear of corn from his marmalade candies🌽🌽🌽
00:38
Valja & Maxim Family
Рет қаралды 17 МЛН
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 141 МЛН
Python Data Structures #2: Linked List
18:54
Brian Faure
Рет қаралды 447 М.
Data Structures - 6 | Queue | Tamil
11:46
CS in Tamil
Рет қаралды 49 М.
2.10 Implementation of Doubly Linked List - Data Structures
21:14
Jenny's Lectures CS IT
Рет қаралды 433 М.
DOUBLY LINKED LIST/ Explained in Tamil and English
26:36
Study with JBR Tri Sea Dr. G. Sugitha
Рет қаралды 30 М.
Data Structures - 5 | Stack |  Tamil
13:19
CS in Tamil
Рет қаралды 75 М.
Singly Linked List | Data Structures | CS3301 | Anna university R2021 in Tamil
12:30
PK Educational Institute
Рет қаралды 2,4 М.
Stack Implementation in Tamil | Data Structures | Ep-3 | Code io
32:29
code io - Tamil
Рет қаралды 19 М.