Introduction to Linked List | C++ Placement Course | Lecture 22

Apna College
17 Dec 202015:16

Summary

TLDRThe transcript discusses a data structure known as 'Linked List Liquid for Data', which is stored in Ruby. It explains the concept with the help of a person who can hold memory elements in a single clock of memory. The discussion covers the limitations of this structure, such as size constraints and memory allocation preferences. It also touches upon the challenges of inserting elements between nodes and the impact on international relations within the list. The speaker provides a detailed walkthrough of how to traverse and manipulate these lists, emphasizing the importance of understanding the start and end points, and the use of pointers to navigate through the list.

Takeaways

  • 📚 Introduction to an interesting data structure called 'Linked List'.
  • 🔗 Linked Lists store elements in memory blocks that are connected to each other.
  • ⚖️ Linked Lists differ from arrays because elements in arrays are stored in contiguous memory locations, while Linked Lists do not require this.
  • 🧠 Linked Lists can be dynamically expanded, allowing insertion of more elements as needed, unlike arrays with fixed size.
  • 🚧 Deletion and insertion operations in Linked Lists can be slower due to the need to update pointers.
  • 💡 The concept of a head pointer is introduced, which points to the first node in the Linked List.
  • 🚀 Linked Lists are flexible and can handle memory fragmentation efficiently.
  • 🔄 Linked Lists use 'next' pointers to traverse from one node to the next until reaching the end.
  • 🛠️ Example of node structure: each node contains data and a pointer to the next node.
  • 🎯 Practical usage in programming includes functions for inserting nodes at the end, printing the list, and searching for specific values.

Q & A

  • What is the main topic discussed in the script?

    -The main topic discussed in the script is about data structures, specifically focusing on 'Linked List' and its properties and operations.

  • What is the term used for a linked list that stores data in memory?

    -The term used for a linked list that stores data in memory is 'Linked List Data Structure'.

  • What is the difference between a singly linked list and a doubly linked list as mentioned in the script?

    -A singly linked list allows traversal in one direction, while a doubly linked list allows traversal in both directions due to the presence of links to both the next and previous nodes.

  • What are the limitations of a linked list as discussed in the script?

    -The limitations include the inability to directly access elements by index, the overhead of memory allocation for each element, and the complexity introduced by insertions and deletions, especially when considering the need to update links between elements.

  • How does the script describe the memory allocation for elements in a linked list?

    -The script describes memory allocation for elements in a linked list as being allocated wherever there is free memory, and that each element may be spread out in memory with links to connect them.

  • What is the term used for the pointer that connects one node to another in a linked list?

    -The term used for the pointer that connects one node to another in a linked list is 'next'.

  • What is the purpose of the 'head' pointer in a linked list as described in the script?

    -The 'head' pointer in a linked list is used to keep track of the starting node of the list, allowing for easier traversal and manipulation of the list.

  • How does the script explain the process of inserting a new node into a linked list?

    -The script explains that to insert a new node, you create a new node with the data and a 'next' pointer. Then, you traverse to the last node of the list, update its 'next' pointer to point to the new node, and finally, update the 'next' pointer of the new node to 'null'.

  • What is meant by 'tail' in the context of the linked list discussed in the script?

    -In the context of the linked list, 'tail' refers to the last node in the list, which is significant for operations like appending new elements to the end of the list.

  • How does the script handle the scenario where the linked list is empty?

    -The script handles an empty linked list by checking if the 'head' is equal to 'null', indicating no nodes are present. In such a case, it directly assigns the new node as the head of the list.

  • What is the significance of the 'next' field in a node of a linked list according to the script?

    -The 'next' field in a node of a linked list is significant as it stores the memory address of the next node in the sequence, allowing the list to be traversed and manipulated.

Outlines

00:00

🔗 Understanding Data Structures

The paragraph discusses an interesting data structure named 'Link List Liquid' for storing data, which is similar to the way 'ASP' and 'RSB' work but with some differences that will be explored. It introduces the concept of 'Linked Memory' and how it differs from 'Block Memory'. The speaker uses analogies to explain how memory allocation works with 'Linked Memory', where each 'Adam' (element) can be thought of as a party in a single clock of memory. The paragraph also touches on limitations and considerations when using 'Linked Memory', such as size constraints and the impact on operations.

05:00

📝 Deep Dive into Linked List Structure

This section delves deeper into the specifics of the linked list structure, explaining how nodes are defined and how data is inserted. It introduces the concept of a 'head pointer' that keeps track of the starting point of the list and how the list is traversed from the head to the last node. The paragraph also discusses the importance of understanding the end of the list and how to manage the memory effectively by considering the size and allocation of memory blocks.

10:05

🗣️ Discussing the English Language and Technical Terms

The content in this paragraph seems to be a mix of technical jargon and English language usage. It talks about traversing through elements, managing memory, and inserting data into a list. The speaker also mentions creating a function for inserting data and how to handle the last node of the list. There's a focus on ensuring that the list is correctly managed and that the end of the list is identifiable.

15:09

📽️ Wrapping Up the Discussion

The final paragraph appears to be concluding the discussion, possibly thanking the audience and encouraging them to return for more content. It suggests that the speaker has covered various topics in the video and is now wrapping up the session.

Mindmap

Keywords

💡Linked List

A Linked List is a linear data structure where elements are stored in nodes. Each node contains a data part and a reference (or link) to the next node in the sequence. In the video, the concept of linked lists is explained as a memory-efficient structure where elements are dynamically connected, unlike arrays which require contiguous memory allocation.

💡Memory Allocation

Memory allocation refers to the process by which computer programs and services reserve memory space. In the video, it's discussed in relation to arrays, where memory must be contiguous, as opposed to linked lists, where elements can be stored in different memory blocks and linked together. This highlights a key advantage of linked lists over arrays.

💡Node

A Node is the fundamental building block of a linked list. Each node contains data and a pointer to the next node in the list. In the video, nodes are described in detail, with examples showing how nodes are connected via the 'next' pointer to form a linked list structure.

💡Pointer

A Pointer is a variable that stores the memory address of another variable. In the context of linked lists, the pointer refers to the part of the node that points to the next node in the sequence. The video explains how pointers are used to traverse the linked list and to insert or delete elements.

💡Head Pointer

The Head Pointer is a special pointer that stores the memory address of the first node in a linked list. It is essential for traversing and managing the list. The video highlights the role of the head pointer in identifying the start of the linked list and how it is used during operations like insertion and deletion.

💡Traversal

Traversal refers to the process of visiting each node in the linked list, starting from the head and following the pointers to the next node. The video demonstrates traversal by explaining how to move through a linked list from one node to another, checking or modifying the values stored in each node.

💡Insertion

Insertion is the process of adding a new node to the linked list. The video discusses different methods of insertion, such as adding a node at the beginning, middle, or end of the list, and explains how pointers must be updated to maintain the integrity of the linked list structure.

💡Deletion

Deletion involves removing a node from the linked list. The video describes how to delete a node by adjusting the pointers of the previous node to bypass the deleted node, ensuring the continuity of the list. The video emphasizes how deleting elements in linked lists can be more efficient than in arrays.

💡Contiguous Memory

Contiguous Memory refers to a memory allocation strategy where elements are stored in adjacent memory locations. In the video, the inefficiency of arrays requiring contiguous memory is compared to linked lists, where elements can be scattered across memory but linked together through pointers.

💡Null Pointer

A Null Pointer is a pointer that does not point to any memory address or node. It is used to signify the end of a linked list. The video explains how the last node in a linked list has a 'next' pointer that is set to null, indicating that there are no more nodes in the list.

Highlights

Introduction to an interesting data structure called 'Linked List Liquid for Data'.

Comparison of 'Linked List Liquid for Data' with similar structures like 'ASP' and 'RSB'.

Explanation of how memory is allocated in a single clock of memory party.

Description of the limitations of the data structure, such as size effects and memory allocation preferences.

Discussion on the challenges of memory allocation and the need for memory cricket.

Introduction to the concept of 'memory cricket' and its role in data structure.

Explanation of the term 'chewice' and its significance in the context of the data structure.

Description of the memory allocation process and how it relates to the data structure.

Discussion on the limitations and how they affect the functionality of the data structure.

Explanation of how the data structure handles infection and deletion, comparing it to body processes.

Introduction to the concept of 'international relations' within the data structure.

Discussion on the impact of size on the modification of elements in the data structure.

Explanation of how the data structure handles fragmented family and different available boxes.

Description of the process of inserting elements into the data structure.

Introduction to the concept of 'fold' and its importance in the data structure.

Explanation of how the data structure is folded and its significance from an interview perspective.

Discussion on the importance of defining the starting and ending points in the data structure.

Explanation of how the data structure uses pointers to determine the start and end of a list.

Introduction to the concept of 'cross travel' within the data structure.

Discussion on how to determine the starting point and stopping point for cross travel in the data structure.

Explanation of how to reach any note from any other note within the data structure.

Introduction to the concept of 'directly' and how it is used in the data structure.

Discussion on the importance of understanding the structure of 'lip structure' in the data structure.

Explanation of how the data structure handles the concept of 'fold' and its impact on functionality.

Transcripts

play00:00

कि पंचायत सोचा आप आज हम करने वाले एक

play00:02

बहुत इंटरेस्टिंग डाटा स्ट्रक्चर्स उसका

play00:04

नाम है लिंक लेस लिक्विड लिए डाटा

play00:07

स्ट्रक्चर रूबी स्टोर कर होता है हमारे

play00:09

तिल लिस्ट ऑफ प्राइम न्यूज़ अपडेट उनके

play00:11

शायद आपको याद आ रही होगी आरएसपी कि

play00:13

आरएसबी काफी सिमिलर काम करता है लेकिन

play00:16

इन्हें कुछ डिफरेंस से जो कि हम यहां पर

play00:18

पढेंगे हमारे जो आदमी होता ना यार उसको आप

play00:21

ऐसे समझ सकते हैं जो सिंगल क्लॉक ऑफ

play00:23

मेमोरी विद पार्टी सच तो क्या हो र मेमोरी

play00:26

में कि एक हम क्लॉक ऑफ मेमोरी लेंगे हम रे

play00:28

आ रे के लिए और उसके कुछ पार्टीशन होंगे

play00:31

जिसमें हमारे आदमियों एलिमेंट्स शुरू हो

play00:34

रहे होंगे अगर लिंग होता है कि हमारा

play00:38

मल्टीपल होती है और यह जो यह एक दूसरे से

play00:44

कनेक्टेड हो तो इसको बोलते हैं तो यहां पर

play00:48

आपको थोड़ा डिफरेंस में किस च्वाइस चार

play00:53

डिफरेंस है तो यहां पर आप लिए जरूरी नहीं

play00:57

है कि हमारा जो हमें ब्लॉक में

play01:00

क्विट करना है वह एक साधु व हम कहीं पर भी

play01:02

वह वाइडऐली स्प्रेड हो सकते हैं हमारा ही

play01:04

मेमोरी में और वह दूसरे से लिंग होंगे

play01:07

तैयार आर्य वापस जाता है इसके कुछ

play01:09

लिमिटेशंस एंड है पहले एक लिमिटेड आप

play01:12

लोगों ने नोटिस कार्यों की आवक हुई कि

play01:14

हमारा जो साइज होता है और इसका वह इफेक्ट

play01:16

होता है आप उसको एक बार अपना एडवोकेट कर

play01:19

दिया तो उसके बाद आप इसे पढ़ा नहीं सकते

play01:21

और एलिमेंट नहीं आर्ट कर सकते तो एक तो यह

play01:23

चीज है दूसरा यह कि उस पर जो ब्लॉट मेमोरी

play01:26

एलोकेट होता है वह कौन इच्छुक है तो इसका

play01:28

मतलब यह हुआ कि सपोच मेरे ब्लॉग आफ मेमोरी

play01:31

में मेरे को टेस्टी बाइट्स की एक अरे वह

play01:34

मेमोरियल क्रिकेट करनी है हमें दे दो मेरे

play01:36

मेमोरी में एक जगह Tubelight से एक जगह

play01:38

30.72 एक साथ नहीं है तो क्या मैं अपने

play01:41

आर्य को एलोकेट कर पाऊंगी मैं भी नहीं कर

play01:43

पाऊंगी जो कि वह साथ ही नहीं है तो यहां

play01:45

पर हम इसे नहीं कर पा रहे विकास इट

play01:47

रिक्वायर्स कंसीडरेबल ऑफ मेमोरी और थर्ड

play01:50

लिया और जो इंफेक्शन और डिलीशन होता हमारे

play01:53

शरीर में वह थोड़ा तक मोस्टली हो जाता है

play01:55

क्योंकि सपोच मेरे को एक एलिमेंट जो है

play01:57

इंसल्ट कर नारे के बीच में तो उस

play02:00

तेरे को उसके बाद के जो भी एलिमेंट से

play02:01

उन्हें पहले हर एक स्टेप बढ़ाना पड़ेगा

play02:04

नेक्स्ट तीन में डालना पड़ेगा और फिर मैं

play02:07

इंसल्ट कर पाएंगे इन रिलेशन में मुझे उसके

play02:10

बाद के सारे वाली उसको एक चेक पीछे करना

play02:13

पड़ेगा टाइट यह तो है हमारा इंटरनेशनल

play02:16

रिलेशंस थोड़ा कॉस्टली कर देता है अगर अपन

play02:18

रो करें लिप्स के साथ शेयर इंग्लिश में

play02:21

हमारा साइज वह मॉडिफाई हो पा रहा होगा हम

play02:24

कितने भी एलिमेंट हमारे लिंक्स इसमें आर्ट

play02:26

करते जा सकते हैं लेकिन यह जो मेरे

play02:28

रिलेटिव होती है वह है नॉन इच्छुक है तो

play02:32

अगर हमारा फ्रेगमेंटेड फैमिली हमारे पास

play02:35

अलग-अलग बॉक्स अपनी अवेलेबल है तो भी हम

play02:37

अपने लिंग लिस्ट को फैमिली एडवोकेट कर पा

play02:40

रहे हैं होंगे थोड़ी यार इंटरनेशनल रिलेशन

play02:43

हो जाता है वह काफी इजी हो जाएगा लिंक लेस

play02:45

में और कम क्वांटिटी हो जाता है क्योंकि

play02:48

अगर सपोर्ट में को इंसल्ट करना बीच में

play02:50

कोई भी ब्लॉक आफ मेमोरी तो आपको क्या करना

play02:52

पड़ेगा मैं को बस जो दूर लिप्स है वह

play02:54

चेंजेस करने पढेंगे इसमें लिमिट डिलीट या

play02:57

डिलीशन के लिए मेरे को बस लिस्टेंस करने

play02:59

का

play03:00

अपने को बाकि सारे जो भी हमारे ब्लॉग सोंग

play03:02

उनको मॉडिफाई ही करना पड़ रहा होगा अनलाइक

play03:05

और इस ठीक है यार आते हैं हमारे लिप्स

play03:08

स्ट्रक्चर कैसे होता है ठीक है तो उसको

play03:10

समझते हैं तो अभी तक जो मैं आपको फॉलो थे

play03:12

ब्लॉग आफ मेमोरी होते हैं कुछ जो लिंग

play03:14

होता है दूसरे से वह ब्लॉट मेमोरी को बोल

play03:17

रहे होंगे नोट कि आज दोपहर होती है एक थे

play03:20

डेट आफ रजिस्ट्रेशन स्टार्ट करेंगे जो भी

play03:22

डेटा हमें शुगर है वह इंटीरियर हो सकता है

play03:24

फ्लॉप हो सकता कैरेक्टर बॉयज और दूसरा

play03:27

होता है यार फील नेक्स्ट नेक्स्ट क्या

play03:28

होता है यह पॉइंट अ होता है जो कि नेक्स्ट

play03:31

नोट जो होता है उस लिस्ट में उसको पॉइंट

play03:33

कर रहा होगा ठीक है तो यह ऐड्रेस टो करता

play03:36

है नेक्स्ट लोड का तो अगर मैं आपको

play03:38

एग्जांपल के थ्रू दिखाओ तो यह मेरा एक

play03:40

लिंक मैं इसे यहां पर जो मेरा पोस्ट नोट

play03:43

है उसके जो नेक्स्ट फील्ड में एड्रेस है

play03:46

वह है जो मिर्च से कंट्रोल है उसका एड्रेस

play03:49

टाइट यह वाला मैंने लिया है फॉर एग्जांपल

play03:51

की 20k पर प्रेजेंट ऐड्रेस पर तो इसका जो

play03:54

पोस्ट नोट है इसका नेक्स्ट टी-20 के होगा

play03:58

इन सिमिलर वर्ड यहां पे

play04:00

मेरे से कि नए लिमिट है उसके नेक्स्ट ईयर

play04:02

में होगा 30k 30k पर नेक्स्ट मेरा नॉट

play04:05

प्रेजेंट है अनशॉर्न ठीक है तो अब हम यहां

play04:08

पर समझ में आ गए कैसे हम क्रॉस करेंगे हम

play04:11

किसी भी एक नोट से किसी भी दूसरे नोट्स

play04:13

में पहुंच पाएंगे टाइट यह हर एक नोट जो है

play04:15

वह सिर्फ अपने नेक्स्ट वाले नोट का ध्यान

play04:18

रखना ठीक है उसको बाकी नोट से कोई फर्क

play04:20

नहीं पड़ता तो अगर हम इस नोट पर है तो हम

play04:22

डाइरैक्टली इस नोट पर नहीं पहुंच सकते

play04:24

लेकिन हम पहले यहां पर जाएंगे फिर यहां पर

play04:26

जाएंगे इस मेलडी विक्रम वर्ड्स अरे यार

play04:29

बात आती है कि यह तो ठीक एंड ट्रैवल्स कर

play04:31

पाएंगे लेकिन अब पता कैसे चलेगा कि कहां

play04:33

से क्रॉस करना स्टार्ट करने और कहां पर

play04:35

स्टॉप करना है मतलब कि हमें कैसे पता

play04:37

चलेगा कि हमारे लिंक लिस्ट है वह कहां से

play04:40

स्टार्ट कुरियर कहां पर स्टॉप हो रही है

play04:42

और उसके लिए हम यूज करते हैं पॉइंट जो कि

play04:44

जाता है हेड हेड प्वाइंटर स्टोर्स एड्रेस

play04:47

ऑफ द फॉरेस्ट लॉर्ड ऑफ द रिंग लिस्ट पर

play04:50

यहां से पता चल जाएगा कि कहां से मेरे

play04:52

लिस्ट है वह स्टार्ट हो रही है और दूसरा

play04:55

यह कि कैसे पता चलेगा कि एंड ओर है तो

play04:57

उसके लिए और हम देखेंगे कि हमारा

play05:00

सऊदी लास्ट नोट होगा उसके नेक्स्ट फील्ड

play05:02

में हम स्टोर कर रहे होंगे नाटक है तो

play05:04

जैसे हमें कोई नोट मिल जाता जिसके नेक्स्ट

play05:06

में है ना तो मैं पता चल जाएगा कि यह

play05:08

हमारा लास्ट फ़्यू डेज आफ्टर लिंग लेफ्ट

play05:11

पैर यह था हमारा लिंक डिस्कस स्ट्रक्चर अब

play05:14

हम इसको फोल्ड करने वाले हैं और यह एक

play05:16

बहुत इंपोर्टेंट टॉपिक है फ्रॉम इंटरव्यू

play05:18

पर्सपेक्टिव एंड ऑर्डर फॉर द टॉपिक फ्लैट

play05:21

बायर्स को समझते अच्छे से कोटिड करके यहां

play05:24

पर सबसे पहले जो मेरा और नोट है वह यार

play05:27

ब्रिटेन नहीं है ठीक है तो वही यूजर

play05:30

डिफाइंड होने वाला जो कि मैं इसको करने

play05:33

वाली हूं भी डिफाइन तुम्हें क्लास बनाऊंगी

play05:35

नोड और यहां पर मैं सबसे पहले इसको पब्लिक

play05:39

बना रहे थे जो भी मेरे को डाटा मेंबर्स

play05:41

बनाने हैं एक तो डाटा मेंबर हो गया हमारा

play05:44

इंसर्ट डाटा राइट अब दूसरा हो गया पॉइंट

play05:47

तो यार मैंने बताया कि जो पॉइंट है वह

play05:49

नेक्स्ट नोट को पॉइंट कर रहा है तो इसका

play05:52

टाइप क्या होगा वह होगा नोट स्टार टाइट यह

play05:55

समझ में आ गया और यहीं पर हम अपना काम इजी

play05:58

करने के लिए बना लेते हैं

play06:00

क्विक कंस्ट्रक्टर जिसे हम ढूंढ रहे होंगे

play06:02

कुछ वॉल्यूम और हम चाहेंगे कि डाटा फील है

play06:05

उसमें वह वाउचर ली जाए और सहनशील है उसमें

play06:09

हम नल भेज देंगे ठीक है तो जैसे मैं कोई

play06:12

कंस्ट्रक्टर यूज करके बनाती हूं नोट तो

play06:15

मेरे को चालू डालनी पड़ेगी डाटा में उबाली

play06:18

जाएगी और नेक्स्ट में नल सपोच में को एक

play06:21

लिंक टिप्स दे रखी है चीकू है वन ओर टू है

play06:24

इसमें और मेरे को यहां पर एक एलिमेंट करना

play06:27

लास्ट में रुकी है थ्री लेयर यह मैं कैसे

play06:29

करूंगी इसको मैं बोलने वाली हूं इन शॉर्ट

play06:32

तेल टिकट मतलब कि हम इन्हें ऐड करने वाले

play06:35

हैं अब यहां पर मैं ट्रैवल्स करना स्टार्ट

play06:37

करूंगी फर्स्ट नोट से चिकित्सकीय मेरे पास

play06:40

होगा हेड प्वाइंटर तुम्हें बाहों से क्रॉस

play06:43

करना स्टार्ट करूंगी और मैं पहुंचूंगी

play06:45

लास्ट नोट तक तो लास्ट रोड मुझे पता चल

play06:48

जाएगा कि अच्छा यह नोट पॉइंट कर रहा है नल

play06:50

को तो यह लास्ट नोट है अब उस नोट के आगे

play06:53

मैं लगा दूंगी जो भी नोट मेरे को इंसल्ट

play06:55

करना है जो कि है 343 वाले नोट के आग को

play06:59

मैं पॉइंट करवा दूं

play07:00

कि नल पेट यह मेरा लास्ट नोट हो जाएगा ठीक

play07:03

है तो इसको फोल्ड करते हैं तो यहां पर

play07:04

सबसे पहले मैं बनाऊंगी एक अवार्ड फंक्शन

play07:07

जो कि होगा इंसर्ट आईटी विल जहां पर मेरे

play07:10

पास आ रहा होगा हेल्प यह ऐड में ले रही

play07:12

हूं बाय रेफ्रेंस नॉट व्हाय वाउल्ड दिए कि

play07:15

हमें अपने लिंग लिस्ट को यहां पर मॉडिफाइड

play07:18

करना है अब सबसे पहले मैं यहां पर एक न्यू

play07:20

नोट बना लेती हो चिकन नोट स्टार इन इज

play07:23

इक्वल टू न्यू नोट और यहां पर मैं बुड्ढा

play07:26

दूंगी बॉईल तो मेरे पास एक लोटा जाएगा एन

play07:29

चेंज उसका डाटा फिल्म में होगा वाइल्ड और

play07:31

उसके नेक्स्ट फिल्म में होगा न अब मैं

play07:34

इसको क्या करना यार अब मैं को ट्रैवल्स

play07:36

करना है टू द लास्ट नॉट ऑफर लिंक

play07:39

प्लेलिस्ट तो उसके लिए और हमें का

play07:41

ट्रैक्टर रखना पड़ेगा जो कि स्टार्टस एंड

play07:43

तक हमारी लिंक्स इसको ट्राई पॉज कर पाए तो

play07:45

यहां पर मैं एक पॉइंट बना रही हूं उसके

play07:48

लिए नोट्स टाइम चिकना उसमें वाली देरी वह

play07:51

ऐड चाहिए तो हम पोस्टरों से स्टार्ट

play07:53

करेंगे और यह हम तब तक करते रहेंगे जब तक

play07:56

टेंथ का नेक्स्ट नल नहीं हो जाता तब

play08:00

इंटरनेशनल उठ जाएगा तो हमें पता चल जाएगा

play08:02

कि हां यह मेरा लास्ट एलिमेंट है तब तक

play08:05

में करती रहूंगी टाइम इज इक्वल टू टाइम का

play08:08

नेक्स्ट अग्रिम रूप से बाहर आ गई तो मैं

play08:10

पहुंचने अपने लास्ट एलिमेंट पर अब इसके

play08:13

आगे मेरे को ऐड करना है जो मैंने यहां पर

play08:15

न्यू नोट बनाया है MS Word लिख दूंगी

play08:18

टाइम्स का जो नेक्स्ट है उसमें अब आलू डाल

play08:21

दो एन ठीक है और इनके नेक्स्ट मैं तो

play08:24

आलरेडी नल वाली ही तो वह हमें कुछ चेंज

play08:27

करने की जरूरत नहीं है तो यार यह हो गया

play08:29

यहां से हमारा इन शॉर्ट आठ टीमों जाएगा अब

play08:31

यहां पर एक हमारा केस है जहां पर हमें

play08:34

ध्यान रखना पड़ेगा व है कि जब हमारा हेड

play08:38

जो है वह नाले मतलब कि एक भी नोट निंलिखित

play08:42

में ही नहीं अभी तक तो यार उसके इसमें

play08:45

क्या हो रहा होगा यहां पर सबसे पहले चेक

play08:48

लगा दूंगी कि फेड इज इक्वल टू नल तुझे पता

play08:52

चल जाएगा कि हां अब मेरे लिए अभी तक कुछ

play08:55

भी आयोडीन नहीं है तो उस केस में अलार्म

play08:57

यहां पर ऐसे ट्रैवल्स नहीं कर रही

play09:00

कि मैं सीधा क्या कर दूंगी मैंने एंड तो

play09:02

नोट बना ही दिया है मैं सीधा लिख दूंगी

play09:05

हेड इज इक्वल टू इन ठीक है तो एंड मेरा

play09:09

पोस्ट नोट हो जाएगा उसके इसमें और मैं हेड

play09:11

को उस पर पॉइंट करवाकर और यहां पर करवा

play09:14

दूंगी रिटर्न ठीक है अगर मैं को इसको

play09:18

प्रिंट कर आना तो इसलिए मैं लिखूंगी एक

play09:20

फंक्शन चीकू है अपने लिंग सपोर्ट प्रिंट

play09:23

करवाने के लिए व्हाइट डिस्पले यहां पर मैं

play09:26

हेड ले रही होंगी बाय वाउल्ड नॉट बे

play09:29

रेफ्रेंस कि हम अपनी लिंक्स इसको यहां पर

play09:31

मॉडिफाई नहीं कर रहे हैं ठीक है अब मैं

play09:33

यहां पर दोबारा एक वह बना लेती हूं टाइम

play09:36

पॉइंट अरुचिकर टेस्ट और होगा हेड से और

play09:40

यहां पर हम चावल कर रहे होंगे दिल टेंप इज

play09:43

नॉट इक्वल टू नल चीकू जी प्रभु लाल हो

play09:47

जाएगा तो पता चल जाएगा कि हमारी लिस्ट

play09:49

खत्म हो गई है तब तक हम क्या कर रहे होंगे

play09:52

और हम टाइम का जो डाटा है उसको प्रिंट कर

play09:55

रहे होंगे ट्रैक और उसके बाद हम कर देंगे

play09:59

टाइम

play10:00

फिजिकल 210 बता नेक्स्ट एंड इनलिस्टेड

play10:04

यहां पर अगर

play10:06

टेंप ना लेडी सीधा हेड को ही लेती आईज

play10:10

दिनों अपॉइंटेड टो ट्रैवर्स टेलिंग सर यस

play10:12

तो भी उठ नहीं होता ऐसा एक मेरा हे

play10:15

पॉइंटेड है वह सच्ची वाली इंग्लिश में

play10:17

मुंह पर जाता कि यहां पर मैं बाय वॉल्यूम

play10:20

ले रही हूं इन थे रेफ्रेंस ठीक है बट जस्ट

play10:23

थे रिवर्स साइड हमने ले लिया है यहां पर

play10:25

एंड यहां पर अब बस करके देखते इसको रन तो

play10:29

मैंने सबसे पहले एक इसको बनाना पड़ेगा हेड

play10:31

के दी इंसल्ट हेड के लिए बिकॉज़ में कुछ

play10:34

भेजना पड़ेगा हेर टाइट तो मैंने एक हेड

play10:37

बना दिया और इस नवाज़ुद्दीन ना मतलब कि

play10:40

मेरी लिंक सिर्फ वाली है और अब मैं कर

play10:42

दूंगी इन सोंठ तेल और इसमें भी होंगी हेड

play10:46

एंड एक आलू भेज देते हैं वन शॉट एयरटेल

play10:52

हेड टू

play10:55

कि इन शॉर्ट 83083 ठीक है और इसको करके

play11:01

देख लेते हैं एक बार डिस्प्ले पर यहां पर

play11:04

में को हेड भेजना होगा का यह लक्षण 10th

play11:11

को तैयार यहां पर मेरी जल इंचेस है वह

play11:13

फॉर्म हो गया आ गई है इसको आप यहां पर

play11:16

स्पेस की जगह में यह लगा देती हूं ताकि

play11:19

आपको और अच्छे से इन्हें पता चल जाए कि हम

play11:21

क्या कर रहे हैं

play11:26

है तो यहां पर आप लोग देख सकते हैं कि जो

play11:29

मीनिंग्लेस हैं कुछ ऐसी फॉर्म हो रहे

play11:32

होंगे राइट प्यार एक और चीज देखते हैं जो

play11:36

कि है इन शॉर्ट 8 हेल्ड मतलब कि मी को एक

play11:40

लिखित हम यही वाले लिक्विड मांग लेता जो

play11:42

भी हमें फ्रॉम किया मेरे को इसमें हेड पर

play11:45

लाइक पर्स एलिमेंट फर्स्ट न्यूड आर्ट करना

play11:48

है ज्योति हैव 423 उसके लिए क्या करना

play11:50

पड़ेगा मुझे जो मैं एक नया नोट बना लूंगी

play11:53

ठीक है जिसमें मैं डाल दूंगी इस पर और

play11:56

उसको पॉइंट करवा दूंगी टू द पोस्ट नोट ऑफ

play12:00

माय पेरेंट्स लिंक प्लास्टिक है तो वह

play12:02

मिक्स कर लूंगी थ्रू हेड और फिर मैं हेड

play12:04

को चेंज कर के फोन पर ले आऊंगी टाइट तो

play12:07

इसको फोल्ड करता है वह यहां पर मैं लिखती

play12:10

हूं वाइड इन सपोर्ट आठ हेल्थ एंड यहां पर

play12:14

सिमिलरली मेरे पास हेड आ रहा होगा का यह

play12:18

रेफ्रेंस एंड पालीवार योगी जो कि मेरे को

play12:21

आर्ट करनी है तो मैं क्या करूं यार मैं

play12:24

बना दूंगी नोट स्टार इन

play12:26

को सबसे पहले और यहां पर मैंने बॉलीवुड

play12:29

देवी अब लाइक सेट में 19 नेक्स्ट को पॉइंट

play12:33

करवा दूंगी हेड पर ठीक है तो हेड अभी

play12:36

स्टोर कर रहा है हमारे पोस्ट जो भी अ

play12:39

फर्स्ट नोट है ऑफ द लिस्ट उसका एड्रेस है

play12:42

ना तो एंड आफ नेक्स्ट अपॉइंट करेगा टू द

play12:44

फर्स्ट नोड एंड हेड को अब हम ऊपर के इन

play12:48

तेल लेंगे चेक्ड हमारा बन गया है फ़ास्ट

play12:51

फ़ूड अब यहां पर यह चीज आप देखिए कि यहां

play12:54

पर हम सेम चीज कर रहे थे तो यहां पर हम

play12:57

इंच राइटिंग और 10 वी शुड हैव डायरेक्टली

play12:59

को कॉल्ड इन शॉर्ट है ठीक है अगर हमें

play13:02

फर्स्ट एलिमेंट ऐड करना है तो हम यह जो

play13:05

इंपॉर्टेंट भी कर सकते हैं मैं बात चिकट

play13:08

यहां पर इसको करके देखते हैं

play13:11

झाल

play13:17

84 यहां पर यह थी हमारी जो हमने इनिशियली

play13:20

बनाई थी रींगस और यह हो गई आफ्टर डूइंग

play13:23

फॉर इट्स हेड ठीक है एक लास्ट जल्दी से

play13:28

चीज देख लेते हैं जो कि है शॉर्ट चल ठीक

play13:30

है हमने इंफार्मेशन देख लिया और प्रिंट

play13:33

कैसे करना है वह देखिए अब देखेंगे हम

play13:35

सोचेंगे तुम मैं एक भूल सर्च बना दूंगी

play13:38

फंक्शन ठीक है जिसमें हम ले रहे होंगे नोट

play13:41

स्टार हेड एंड इंट की जो हमें पॉइंट करनी

play13:45

है तो यहां पर सबसे पहले हम एक पॉइंट बना

play13:47

देंगे टाइम चिकन जो इन्हें सिलाई होगा हेड

play13:50

से एंड अब हम ट्रैवल्स करेंगे अपनी लिंक्स

play13:54

इसको तो जब तक टेंथ जो है न बिल्कुल नहीं

play13:57

हो जाता तब तक हम ट्रैवल्स कर रहे होंगे

play13:59

और हम फाइन करें होंगे अगर टेंपर्ड ग्लास

play14:01

जो डाटा है वह इक्वल हो जाता है कि इसे तो

play14:05

उसके इसमें क्या करो यार उसके इसमें

play14:07

रिटर्न कर दो चुप और अगर यह पूरा लुक खत्म

play14:10

हो जाता मतलब हमें अपनी कि नहीं मिल रही

play14:12

है तो उस केस में रिटर्न कर दो फॉल्स यहां

play14:15

पर हम एक चीज बहुत ही

play14:16

शैंपू गए हैं वह है तू मूत पॉइंट 10.8

play14:22

एडिट यह तो वह चीज करनी बहुत जरूरी है

play14:24

वरना यह उपाय लूप है यह हमेशा के लिए चलता

play14:27

है जाएगा ठीक है तुमने टाइम को आगे बढ़ा

play14:31

दिया एंड इसको करके देखते हैं या तो सर्च

play14:36

मिडिंग हेड एंड वांट टू सर्च फॉर 5 यकीन

play14:40

नहीं है हमारे लिए तो दशरथ गिव मी 0tweet

play14:47

का प्यार यहां पर मैं बस विद्रोह आदत मींस

play14:49

पाइप इज नॉट प्रेजेंट एंड अगर मैं यहां पर

play14:53

पांच की जगह थ्री लिखती हूं तो नृत्य किया

play14:56

है बनाना चाहिए फ्रंट विकेट वन डाइड सो इन

play15:01

टूडेज वीडियो बिलॉन्ड हाउ टू इन शॉर्ट

play15:04

स्पीच एंड प्रिंटर्स लुइस आई होप यू

play15:08

अंडरस्टैंड एंड हम कुछ और चीज कर रहे

play15:11

होंगे लेकिन जिस पर इन थे फॉलोइंग वीडियो

play15:13

थैंक यू एंड बैक ओं

Rate This

5.0 / 5 (0 votes)

الوسوم ذات الصلة
Data StructuresLinked ListsMemory ManagementProgramming ConceptsTechnical TutorialAlgorithm AnalysisSoftware DevelopmentComputer ScienceEducational ContentCoding Techniques
هل تحتاج إلى تلخيص باللغة الإنجليزية؟