Bro, can you guide as getting programs related to Data structure
@technipavi5887 Жыл бұрын
Thanks a Trillion sir ✨
@salmansharif83793 жыл бұрын
Thanks ❤️
@lovebeats6493 жыл бұрын
Circular link list advantage and disadvantage explain bro
@southkorea19522 жыл бұрын
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-yo1vq6 ай бұрын
super brooo
@vennilat77863 жыл бұрын
Nice
@wiz5203 жыл бұрын
Thanks thala
@padminil23154 ай бұрын
Good
@KLT_Sathish4 ай бұрын
👏👏👏...
@mohamednoohumiqdad69096 ай бұрын
Coding yenga bro?
@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 Жыл бұрын
👌👍
@sreedharsancbe807 Жыл бұрын
❤
@kumarankd3587 Жыл бұрын
singly linked list poodu pro
@selvabadass4 ай бұрын
bro linked list tha singly linked list bro😂
@___its___my___life___journey__3 ай бұрын
Both are same
@vigneshjaya90583 жыл бұрын
Exam la ealuthura mari theoretical aa explain pannu bro