LINKED LIST (INSERTION AT BEGINNING,ENDING,SPECIFIED POSITION ) - DATA STRUCTURES

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024
  • LINKED LIST INSERTION OF AN ELEMENT AT
    1. BEGINNING
    2. ENDING
    3. SPECIFIED POSITION
    INTRODUCTION TO LINKED LIST, CREATE AND DISPLAY
    • LINKED LIST (CREATION ...
    ---------------------------------------------------------------------------------------------------------------
    DATA STRUCTURES
    • INTRODUCTION TO DATA S...
    JAVA PROGRAMMING
    • CORE JAVA TUTORIAL FOR...
    COMPILER DESIGN
    • INTRODUCTION TO COMPIL...
    AUTOMATA THEORY || THEORY OF COMPUTATION
    • INTRODUCTION TO AUTOMA...
    R PROGRAMMING
    studio.youtube...
    HTML TUTORIALS WITH IMPLEMENTATION || LEARN HTML IN 4 HOURS
    • HTML TUTORIALS WITH IM...
    LEARN CSS IN 3 HOURS || CASCADING STYLE SHEETS FOR BEGINNERS
    • LEARN CSS IN 3 HOURS |...
    JAVA SCRIPT FOR BEGINNERS IN 7 HOURS || LEARN JAVA SCRIPT IN 7 HOURS || JAVA SCRIPT
    • JAVA SCRIPT FOR BEGINN...
    XML (eXtensible Markup Language)
    • XML (eXtensible Markup...
    OPERATING SYSTEM
    • OPERATING SYSTEM
    ETHICAL HACKING
    • Video
    VI EDITOR BASICS IN LINUX / UNIX || LEARN VI EDITOR COMMANDS || LINUX || UNIX
    • VI EDITOR BASICS IN LI...
    HOW TO DOWNLOAD & INSTALL MySQL IN WINDOWS 10
    • HOW TO DOWNLOAD & INST...
    DATABASE MANAGEMENT SYSTEM
    • DATABASE MANAGEMENT SY...
    PYTHON PROGRAMS
    • PYTHON PROGRAMS
    C PROGRAMMING
    • 01 - VARIABLES & CONST...
    CORE JAVA TUTORIAL FOR BEGINNERS || LEARN CORE JAVA IN 15 HOURS || JAVA TUTORIALS FOR BEGINNERS
    • CORE JAVA TUTORIAL FOR...
    PYTHON TUTORIALS FOR BEGINNERS (తెలుగు లో)
    • Python in One Shot(తెల...
    PYTHON OOPS - MODULES - EXCEPTION HANDLING (తెలుగు లో)
    • PYTHON - OOPS CONCEPTS...
    PYTHON NUMPY TUTORIAL IN TELUGU (తెలుగు లో) || COMPLETE NUMPY TUTORIALS IN TELUGU
    • PYTHON NUMPY TUTORIAL ...
    PYTHON PANDAS TUTORIAL IN TELUGU (తెలుగు లో) || COMPLETE PANDAS TUTORIALS IN TELUGU || DATA SCIENCE
    • PYTHON PANDAS TUTORIAL...
    MATPLOTLIB LIBRARY - PYTHON PROGRAMMING (ENGLISH)
    • MATPLOTLIB LIBRARY - P...
    PYTHON DATABASE CONNECTIVITY - MYSQL & MS-EXCEL
    • PYTHON DATABASE CONNEC...
    DATA STRUCTURES USING PYTHON (ENGLISH)
    • DATA STRUCTURES USING ...
    ----------------------------------------------------------------------------------------------
    Instagram : / sundeepsaradhikanthety

Комментарии • 144

  • @RidwanurRahmanextreme
    @RidwanurRahmanextreme 3 года назад +39

    Sweat dripping off your neck is priceless for us.

  • @manishag100
    @manishag100 4 года назад +11

    Link list was very well explained i really liked it a lot.

  • @swapniljaiswal4956
    @swapniljaiswal4956 4 года назад +52

    I wrote the full program down here:
    #include
    #include
    int value;
    struct node
    {
    int data;
    struct node *next;
    }*new,*head,*tail,*temp,*current,*prev,*next;
    void create()
    {
    new=(struct node*)malloc(sizeof(struct node));
    printf("Enter the value:
    ");
    scanf("%d",&value);
    new->data=value;
    new->next=NULL;
    }
    void insert()
    {
    create();
    if(head==NULL)
    {
    head=new;
    tail=new;
    }
    else
    {
    tail->next=new;
    tail=new;
    }
    display();
    }
    void display()
    {
    printf("Updated link list is:
    ");
    temp=head;
    while(temp!=NULL)
    {
    printf("%d
    ",temp->data);
    temp=temp->next;
    }
    }
    void insertatbeg()
    {
    if(head==NULL)
    printf("No Linked List found.");
    else
    {
    create();
    new->data=value;
    new->next=head;
    head=new;
    display();
    }
    }
    void insertatend()
    {
    if(head==NULL)
    printf("No Linked List found.");
    else
    {
    create();
    new->data=value;
    tail->next=new;
    new->next=NULL;
    tail=new;
    display();
    }
    }
    void insertatmid()
    {
    if(head==NULL)
    printf("No Linked List found.");
    else
    {
    create();
    temp=head;
    int pos,i;
    printf("Enter the position where new node is to be inserted:
    ");
    scanf("%d",&pos);
    for(i=0;inext;
    }
    new->data=value;
    new->next=temp->next;
    temp->next=new;
    display();
    }
    }
    void deleteatbeg()
    {
    if(head==NULL)
    printf("No Linked List found.");
    else
    {
    temp=head;
    head=head->next;
    temp->next=NULL;
    display();
    }
    }
    void deleteatend()
    {
    if(head==NULL)
    printf("No Linked List found.");
    else
    temp=head;
    while(temp->next!=tail)
    {
    temp=temp->next;
    }
    temp->next=NULL;
    tail=temp;
    display();
    }
    void deleteatmid()
    {
    if(head==NULL)
    printf("No Linked List found.");
    else
    {
    temp=head;
    int pos=0,i;
    printf("Enter the position which you want to delete.
    ");
    scanf("%d",&pos);
    for(i=0;inext;
    }
    temp->next=temp->next->next;
    display();
    }
    }
    void count()
    { if(head==NULL)
    printf("No Linked List found.");
    else
    {
    int count=0;
    temp=head;
    while(temp!=NULL)
    {
    count++;
    temp=temp->next;
    }
    printf("
    Total number of nodes is : %d
    ",count);
    }
    }
    void reverse()
    {
    if(head==NULL)
    printf("No Linked List found.");
    else
    {
    current=head;
    while(current!=NULL)
    {
    next=current->next;
    current->next=prev;
    prev=current;
    current=next;
    }
    }
    head=prev;
    display();
    }
    int main()
    {
    printf("Press:
    1.Insert a new value.
    2.Display all elements.
    3.Insert at beginning.
    4.Insert at End.
    5.Insert in middle.
    6.Delete at beginning.
    7.Delete at End.
    8.Delete in between.
    9.Count total number of nodes.
    10.Reverse
    0.Exit");
    int choice;
    do
    {
    printf("
    Enter your choice:
    ");
    scanf("%d",&choice);
    switch(choice)
    {
    case 1:
    insert();
    break;
    case 2:
    display();
    break;
    case 3:
    insertatbeg();
    break;
    case 4:
    insertatend();
    break;
    case 5:
    insertatmid();
    break;
    case 6:
    deleteatbeg();
    break;
    case 7:
    deleteatend();
    break;
    case 8:
    deleteatmid();
    break;
    case 9:
    count();
    break;
    case 10:
    reverse();
    break;
    case 0:
    printf("Exited successfully");
    break;
    }
    }while(choice!=0);
    }

  • @bachalakurisumathi5211
    @bachalakurisumathi5211 2 года назад +3

    sir your teaching is very understanding to students. iam also faculty,i v'l follow ur video. its very usefull to my teaching.

  • @user-qq2ff1wi9r
    @user-qq2ff1wi9r 6 месяцев назад +1

    Thank u so much. The explanation is very simple. I hope it will be translated into Arabic🔥 in the future. Continue, u deserve the best 👌🏼

  • @nagasundar8121
    @nagasundar8121 3 года назад +9

    Sir if u don't mind can I correct the error in the last code that's means insertions of list at specific position in that ,, the for we had written is wrong ;; that is (i=0;i

    • @usmaanrangrez3445
      @usmaanrangrez3445 2 года назад

      but if we write pos code doesn't work!

    • @just_believer
      @just_believer Год назад

      Sir wla insert at specific position shi h ki nhi aur agr nhi h to dhi wla bhj dena

    • @just_believer
      @just_believer Год назад

      Ye insert at specific position shi Hain kya bro aur glt hai to shi wla bhj do

  • @parvathakumaransevaiya423
    @parvathakumaransevaiya423 4 года назад +12

    Insertion at ending 10:18
    Insertion at specified position 14:28

    • @swathy9088
      @swathy9088 3 года назад +2

      So kind of u❤️
      Since I only want to watch insertion at position

  • @supratimnayek2776
    @supratimnayek2776 5 лет назад +11

    I think the loop will be (i=0;i

  • @jaydipmakwana7696
    @jaydipmakwana7696 5 лет назад +7

    Thank you so much sir,i can understand link list easily.

  • @jagadevaas9169
    @jagadevaas9169 4 года назад +15

    Sir need an implementation part..! U teach in very easy method, but still implementation would help us to understand more better...! Thanku

  • @princesubhash2421
    @princesubhash2421 4 года назад +1

    tq sir it is very useful and i am a student of lbrce cse

  • @singireddyvenkatameghanath9785
    @singireddyvenkatameghanath9785 4 года назад +9

    Data structures is the important for the cse students

    • @veerakumarn739
      @veerakumarn739 3 года назад

      yes, it is very important to all those who are performing with the elements...And if you want to reduce the time complexity and memory occupation it will help you a lot

  • @fluffy280
    @fluffy280 9 месяцев назад +2

    struct node{
    int data;
    struct node *next;//self referential pointer it points to itself useful for creating new nodes
    };
    int main(){
    struct node *head=NULL,*tail=NULL,*new,*temp;//variables to acess our structure
    int value;
    char ch;
    //node creation
    do{
    new=(struct node*)malloc(sizeof(struct node));//allocating the memory for our node
    printf("enter any value: ");
    scanf("%d", &value);
    new->data=value;//assigning the value to node
    new->next=NULL;//initially setting the 1st node to null
    if (head==NULL){//condition1. checking if the list is empty if it is setting the node created as head and tail and next as null
    head=new;
    tail=new;
    }else{//2.condition.if node already present linking the created node to tail and setting it as tail
    tail->next=new;
    tail=new;//setting new node as the new tail
    }
    //to check if the user wants to create another node
    printf("do you want to continue to create another node if yes enter (y( if no enter (n): ");
    scanf(" %c" , &ch); //inside of using fflushstdin leave some space before % symbol to avoid buffer memory
    }while(ch=='y');
    temp=head;
    while(temp != NULL){
    printf("%d" ,temp->data); //always use arrow not dot when aceesing a member in the structure which is of pointer
    if (temp->next!=NULL){
    printf("------>");
    }
    temp=temp->next;
    }
    //allocation memory
    struct node *freePointer=head;
    while (freePointer !=NULL){
    struct node *nextNode=freePointer->next;
    free(freePointer);
    freePointer=nextNode;
    }
    return 0;
    }

  • @subhanullahdanish8680
    @subhanullahdanish8680 2 года назад

    i really understand sir very very thanks from your teaching method

  • @BiqSam2002
    @BiqSam2002 Месяц назад

    I'm in a right place...thanks sir

  • @code_programme
    @code_programme 4 года назад +3

    Sir I think in insertion at ending tail->next=new should come first followed by new->data=value and new->next=null.Correct me if I am wrong.

  • @srinivasulupulijala8265
    @srinivasulupulijala8265 3 года назад +12

    Without execution its nothing!

  • @mickyman753
    @mickyman753 3 года назад

    that for loop of any position gives same result for both 0 and 1index ,so we should change it else if we wanted to insert at beginning or at index 1 with any position function will lead to same result ,i.e. insert at index 1

  • @shraddhakasaudhan3972
    @shraddhakasaudhan3972 4 года назад +1

    Best explanation 🙏🙏

  • @humanplanet8728
    @humanplanet8728 5 лет назад +4

    Sir, I couldn't understand the statements written inside of for loop, in the case of specific position.. could explain it to me here in comment, it's quite confusing. It'll be a big help. Also the i value is not used in the body of loop, The iteration will happen only once so why? Please clarify my doubts, I the more I see the explanation in video the confused I get! Please help.

    • @farabimahbub5910
      @farabimahbub5910 5 лет назад +1

      only the first statement is inside the for loop(that is why sir did not use parenthesis). The loop runs until we get to our desired position(pos-1)

    • @just_believer
      @just_believer Год назад

      ​@@farabimahbub5910insert at specific position algorithm shi h

  • @sudhanshusharma28
    @sudhanshusharma28 4 года назад +3

    Sir can we write this steps in algorithm on beginning,ending and specific position tell me sir plzzzzzzzzzz

  • @christiankassab988
    @christiankassab988 Год назад

    Great video! Good job

  • @tharunnayak14
    @tharunnayak14 4 года назад

    TEACHING BETTER THAN IIT PROFESSORS. U ROCK SIR

  • @sarialail
    @sarialail Год назад

    you are the best sir

  • @virendragarje6009
    @virendragarje6009 Год назад

    Best explanation 👍

  • @yogeshdeolalkar5326
    @yogeshdeolalkar5326 4 года назад +1

    Good explanation

  • @esakkiram8999
    @esakkiram8999 3 года назад +1

    really interesting class sir and nice understanding thank you sir

  • @srikalyani9089
    @srikalyani9089 3 года назад +1

    I think there is a mistake at entering a new node at a specified position can u clarify it for me???

  • @khushibhatia4678
    @khushibhatia4678 2 года назад

    I really appreciate your efforts♥

  • @harshakumarnomula6648
    @harshakumarnomula6648 4 года назад +1

    super explanation sir ,Thank you so much sir

  • @haniawanhaniawan8638
    @haniawanhaniawan8638 5 лет назад

    thanks for a such easy way of understanding link list

  • @carsfromgarage2905
    @carsfromgarage2905 Год назад

    Excellent👍

  • @dpavankumar5138
    @dpavankumar5138 4 года назад +2

    👏👏👏👏
    Sir, please explain with program
    U are explaining directly by assuming pointers
    Many programs are available at websites

    • @muhammadahmadyousaf2824
      @muhammadahmadyousaf2824 4 года назад +1

      the trick is to learn the algo understand it ... then perform it using any language you want..
      for me i like java and C#

  • @MannBadaya
    @MannBadaya 2 месяца назад +1

    Please anyone tell is this course is comleted and also for C langauge

  • @shraddhakasaudhan3972
    @shraddhakasaudhan3972 4 года назад +1

    thank you sir

  • @rakeshdebata5060
    @rakeshdebata5060 4 года назад

    Well explanation sir and thanku so much for this 👍👍🙏🙏

  • @saddishpillay1097
    @saddishpillay1097 4 года назад

    Super sir..u teaching nyc

  • @kamalakannan9283
    @kamalakannan9283 2 года назад +1

    Thank you so much sir

  • @upenderguguloth5954
    @upenderguguloth5954 2 года назад

    Excellent sir

  • @peddadoddisunilkumar696
    @peddadoddisunilkumar696 4 года назад +1

    Hai sir can we get some programs for this concept can we get some link

  • @ipirates3449
    @ipirates3449 4 года назад

    Sir u are too good.amazing

  • @singlegirlchallenge2162
    @singlegirlchallenge2162 3 года назад

    Sir initially there is no elements in list then how to insert a new element at begging

  • @globe2929
    @globe2929 4 года назад +1

    Applications of linked list topic pettandi sir

  • @hanscesa5678
    @hanscesa5678 4 года назад

    Do u still create test cases for insertion at specific positions? (i.e, it has to be part in the list.)

  • @dipukanchan3312
    @dipukanchan3312 4 года назад

    Thanks sir...very good explanation

  • @kowshikk1375
    @kowshikk1375 3 года назад +1

    Sir,I have a dought [if we want to create a array of 40 elements we run a for loop to reduce the size of the code and to save memory but when it comes to linked list if we want to create a linked list of 40 nodes then can't we use a for loop to create linked list so that we can reduce the size of the code]

    • @usharanitummala3106
      @usharanitummala3106 2 года назад +1

      why cant u use a for loop u definetly can use a for loop..!!!

  • @indianlegendking9071
    @indianlegendking9071 3 месяца назад

    Sir, for second iteration condition fails so how can we do?😢😢😢

  • @R_sravani
    @R_sravani 5 лет назад +2

    Thanku sir I have a doubt that y we. Wrote POS -1 mean what

    • @shibili2332
      @shibili2332 4 года назад +1

      It is to get the correct position that is the new node will come after position 1,so the new node will be at position 2.
      If we change the condition to i

  • @shrutishrinetra
    @shrutishrinetra 4 года назад

    Best explaination

  • @kasamadhu3509
    @kasamadhu3509 3 года назад

    sir malloc gives contiguous memory locations,why we are taking different adresses for each node , if we add new+size of struct node we will get right adress for another node they are contiguous na,

  • @niharikak8710
    @niharikak8710 4 года назад +1

    Sir please explain the program on single linked list

  • @srikalyani9089
    @srikalyani9089 3 года назад

    If we r moving temp to temp->next then why don't we use temp of prev ,for entering adress of new node to 1 position

  • @gouthamireddy6450
    @gouthamireddy6450 5 лет назад

    Hai sir,
    Linked list representation and Linear list representation, are both are same, if not what is the difference, can u explain sir?

  • @govindasharma9077
    @govindasharma9077 4 года назад

    Great

  • @Vishuu196
    @Vishuu196 4 года назад

    Sir at ending we can put any number suppose we can put 10 2000

  • @sameershaik8657
    @sameershaik8657 3 года назад

    types of linked lists explanation sir

  • @QuranicMoments
    @QuranicMoments 3 года назад

    Thnx a lot 👍

  • @srikalyani9089
    @srikalyani9089 3 года назад

    What's the difference between linked list and single linked list????

  • @vidhyamanoharan9191
    @vidhyamanoharan9191 Год назад

    Thank you so much sir😊

  • @srinivasraosangamreddy5674
    @srinivasraosangamreddy5674 3 года назад

    👌

  • @thhummim3123
    @thhummim3123 3 года назад

    you are 1st

  • @harshchoudhary9986
    @harshchoudhary9986 4 года назад

    Sir while writing the code plz write on side what value,new,temp denotes it's a bit confusing

  • @ravinandan1345
    @ravinandan1345 3 года назад +1

    Are you from Machilipatnam

  • @veeralakshmimuddana5831
    @veeralakshmimuddana5831 4 года назад

    Nice classs sirrr

  • @mussadiquejakati4840
    @mussadiquejakati4840 5 лет назад

    Thank You So much !!

  • @santhoshkondaveni39
    @santhoshkondaveni39 Год назад

    sir this program not run in online gdb. suggest any ide other than turbo c.

  • @bhanuprasadbaddam146
    @bhanuprasadbaddam146 4 года назад

    will write algorthim for it sir,for better explanation

  • @rku5350
    @rku5350 2 года назад +1

    Sir kuch classes hindi me diya kro

  • @balakasandeep3882
    @balakasandeep3882 Год назад

    ❤❤❤

  • @anshumanmishra2555
    @anshumanmishra2555 4 года назад +4

    #include
    #include
    struct node
    {
    //Structure named node to store integer in variable data and a pointer variable which can store address location of next node
    int data;
    struct node *next;
    }*head;
    void insert(int data)
    {
    //This function will insert a new node to the start of the linked list
    struct node *temp = (struct node*)malloc(sizeof(struct node));
    temp->data=data;
    temp->next=head;
    head=temp;
    }
    void delete()
    {
    struct node *temp;
    int loc,len,i=1;
    printf("Enter the location");
    scanf("%d",&loc);
    struct node *p=head;
    while(inext;
    i++;
    }
    struct node *h=p->next;
    p->next=h->next;
    free(h);
    }
    void display()
    {
    struct node *temp=head;
    if(temp==NULL)
    {
    printf("The list is empty");
    }
    else
    {
    while(temp!=NULL)
    {
    printf("%d->",temp->data);
    temp=temp->next;
    }
    }
    }
    int main()
    {
    head=NULL;
    insert(1);
    insert(2);
    insert(3);
    insert(4);
    insert(5);
    insert(6);
    display();
    delete();
    display();
    return 0;
    }

  • @DilleswaraRaoAmballa-br2zp
    @DilleswaraRaoAmballa-br2zp Месяц назад

    insertion at specific position value =34 but the position is 3

  • @suhild4579
    @suhild4579 3 года назад

    Thank You ❤️

  • @renujhamnani9417
    @renujhamnani9417 5 лет назад

    Sir we are making *head and *tail variables but how will the compilor undersrtand that head is first element and tail is the last element ?

    • @keysangyonthan
      @keysangyonthan 5 лет назад

      watch the previous video, we point to head to new(the first LL) and then don't change it, while changing the tail simultaneously as we add more nodes.

  • @jithukumar9996
    @jithukumar9996 3 года назад

    Tq soo much sir

  • @inzamamulhaque9198
    @inzamamulhaque9198 4 года назад +1

    What is the type of temp variable in specific insertion part

    • @balakrishnana.k3293
      @balakrishnana.k3293 4 года назад +1

      It is temporary variable.. we can't go with head always BECAUSE head always pointing first node of entire list .. so in order to tracking the nodes we have to use temp as temporary

    • @gamerdon6
      @gamerdon6 3 года назад

      Type of temp variable is STRUCT node same as head or tail

    • @gamerdon6
      @gamerdon6 3 года назад

      @@balakrishnana.k3293 you were not even answering wt he asked lol

  • @keysangyonthan
    @keysangyonthan 5 лет назад

    how will the PC know what position is 2? we haven't assigned anything particular in order to calculate the length of LL

    • @anantsharma6699
      @anantsharma6699 5 лет назад +1

      like in array indexing, the comp is able to know the indices of linked list as well. And indexing starts from 0.

  • @sushanthreddy512
    @sushanthreddy512 4 года назад +1

    sir please provide the full code

  • @bilalabida8291
    @bilalabida8291 5 лет назад

    Thank you 🙏

  • @-PAUL-ub3bz
    @-PAUL-ub3bz 3 года назад

    sir intlo AC pettiyandi

  • @sudhirverma7082
    @sudhirverma7082 5 лет назад

    great

  • @jagadheeswarikolli2848
    @jagadheeswarikolli2848 5 лет назад

    Tnq sooo much sir

  • @kirank6586
    @kirank6586 5 лет назад

    What is a Generalized Linked List

  • @ThankGod143
    @ThankGod143 5 лет назад +1

    Trace the loop and explain that will be helpful its really confusion statements should be inside r outside the loop please clarify it...

    • @arastusharma439
      @arastusharma439 5 лет назад

      Only one statement will be inside the loop ! The first statement!

  • @abinashcreation5575
    @abinashcreation5575 4 года назад

    Sir , insertion should not completely understand

  • @anishjay3359
    @anishjay3359 2 года назад

    Tq

  • @sahalcheruvadi1954
    @sahalcheruvadi1954 4 года назад

    Thanks

  • @venu5416
    @venu5416 5 лет назад

    Thanks sir

  • @kuldeepsingh-qy6gj
    @kuldeepsingh-qy6gj 3 года назад

    Apka padhya smajh ni aa rha h sir ji

  • @techinfotrends5017
    @techinfotrends5017 4 года назад

    Why don't you write in the computer??

  • @nikhilamadhamshetti8893
    @nikhilamadhamshetti8893 2 года назад

    Sir say circular double linked also

  • @kollunageswarrao5179
    @kollunageswarrao5179 3 года назад

    Is datastructures in c and in python are same?

  • @vinothvk2711
    @vinothvk2711 5 лет назад

    Stament should be in outside for loop???

    • @farabimahbub5910
      @farabimahbub5910 5 лет назад +1

      just the first statement will be inside the loop(which is why he did not use any parenthesis)

    • @arastusharma439
      @arastusharma439 5 лет назад

      Its obvious 😜!

  • @shahsikalagowda183
    @shahsikalagowda183 Год назад

    Or pls share the code in description link

  • @syagamreddysrilakshmi6707
    @syagamreddysrilakshmi6707 5 лет назад

    Head = new can you explain once sir

  • @malothvenkanna4666
    @malothvenkanna4666 4 года назад

    Hai sir l want insert and delete linked list full program only plz sir

  • @manoharbontha7575
    @manoharbontha7575 4 года назад +2

    Sir meru Telugu valla

  • @shahsikalagowda183
    @shahsikalagowda183 Год назад

    Sir implementation

  • @karthikreddygdp1380
    @karthikreddygdp1380 Год назад

    Please send the program

  • @allennamdeo3802
    @allennamdeo3802 4 года назад

    I suppose You should say "data of new" instead of "new of data"..🤔🤔

    • @Sahasb360
      @Sahasb360 4 года назад

      No its syntax is that way!!

  • @shitalrathod1956
    @shitalrathod1956 2 года назад

    data structue in java ho to link send kro plz.