Computer Network Lab | VTU | Program 6 - Bellman Ford Algorithm

Поділитися
Вставка
  • Опубліковано 9 лис 2024

КОМЕНТАРІ • 67

  • @roopamam7005
    @roopamam7005  4 роки тому +55

    import java.util.Scanner;
    public class ford
    {
    private int D[];
    private int num_ver;
    public static final int MAX_VALUE = 999;
    public ford(int num_ver)
    {
    this.num_ver = num_ver;
    D = new int[num_ver + 1];
    }

    public void BellmanFordEvaluation(int source, int A[][])
    {
    for (int node = 1; node

    • @aishwaryamb1070
      @aishwaryamb1070 2 роки тому +3

      Amazing teaching mam, thq v much. U maid it so easy .thq vv much

    • @rafiyamehak1845
      @rafiyamehak1845 9 місяців тому

      Ma'am can I the pdf of this code m not able to copy and paste this code

  • @yukthagowda6121
    @yukthagowda6121 2 роки тому +3

    Thank you so much ma'am
    I'm never going to forget the bellman Ford algorithm ever
    Fabulous explaination

  • @Sayeed_motodoc
    @Sayeed_motodoc 3 роки тому +3

    Thank you mam, I have my lab internal tommorow. And at first time only I have understood 👍🏽👍🏽👍🏽

  • @abijitha8226
    @abijitha8226 2 роки тому +3

    Nice explanation, with examples for code side by side, so that we can relate it👌

  • @fashiononyourway
    @fashiononyourway 3 роки тому +7

    Thank you so much ma'am for this video,it really helped me a lot while learning this program..please make more videos for CN lab ma'am, especially part A 🙏
    Love to watch your videos for practicals..

  • @adithyaiyer6317
    @adithyaiyer6317 3 роки тому +2

    Thank you so much ma'am for helping us students in this difficult times

  • @archanac2411
    @archanac2411 3 роки тому +3

    Explanation super madam CN lab java programs,
    madam plz make a video on HTML using fedora
    ( what all command used to execute in terminal)

  • @aishwaryamb1070
    @aishwaryamb1070 2 роки тому +1

    Amazing teaching mam, th q v much
    U maid it soo easy 😢. Thq vv much

  • @anikethk1250
    @anikethk1250 3 роки тому +2

    thank you ma'am
    you have helped me alot with these programs.

  • @shruthik7229
    @shruthik7229 3 роки тому +5

    Please make videos on DBMS programs also,
    🙏🙏🙏🙏

  • @harishreeln4706
    @harishreeln4706 2 роки тому +2

    Tqsm for making the concepts sp easy hatsofff..and tqs a lott mam..

  • @mardiakash9939
    @mardiakash9939 3 роки тому +1

    thank u so much maam . your teaching is as beautiful as u are

  • @sheikhziadahmed2283
    @sheikhziadahmed2283 3 роки тому +5

    Great Explanation ma'am Thank you💯

  • @sinchanakumar6273
    @sinchanakumar6273 2 роки тому +1

    Thank you mam great teaching

  • @adarshnarayan688
    @adarshnarayan688 3 роки тому +1

    Soo well explained 😊
    Thank you mam ☺️☺️

  • @jcsgs769
    @jcsgs769 3 роки тому +1

    Thank you Ma'am its very helpful.

  • @pavithrag8616
    @pavithrag8616 Рік тому

    Thank you so much Mam Nice Explanation

  • @tejansharma8072
    @tejansharma8072 3 роки тому +1

    board pe focus nahi ho raha mera, but finally i got everything i need to know

  • @arvindr6638
    @arvindr6638 3 роки тому +2

    Clearly explained thankyou mam 🙏

  • @SowmyaR-pr5jd
    @SowmyaR-pr5jd Рік тому

    Thanks a ton,ma'am!!!

  • @roshanshetty1463
    @roshanshetty1463 2 роки тому +2

    thank you so much😃

  • @nambi-fn4jv
    @nambi-fn4jv 3 роки тому +1

    great explanation

  • @sanjuanand3056
    @sanjuanand3056 Рік тому

    very helpful

  • @abhish8867
    @abhish8867 3 роки тому +2

    thank u mam,really helpful

  • @meghanak2306
    @meghanak2306 3 роки тому +1

    Nice explanation mam

  • @deekshithm4152
    @deekshithm4152 3 роки тому +1

    Thank you ma'am well explained

  • @SoumyajyotiBiswas-jo7gi
    @SoumyajyotiBiswas-jo7gi Рік тому

    thanks alot mam

  • @axon_xprime9975
    @axon_xprime9975 3 роки тому +1

    Nice ma'am..... explanation level at its peak 🔥🙏

  • @prajwalsattigeri3627
    @prajwalsattigeri3627 4 роки тому +2

    Super teaching mam

  • @mr_atul_
    @mr_atul_ 2 роки тому +1

    👏👏👏

  • @ganeshbiradar6699
    @ganeshbiradar6699 3 роки тому +1

    Thank u

  • @Sayeed_motodoc
    @Sayeed_motodoc 4 роки тому +2

    Thank you mam 🙏🏽

  • @mahadevaswamyn6197
    @mahadevaswamyn6197 4 роки тому +2

    nice mam,thank you so much!

  • @rakeshkundu1452
    @rakeshkundu1452 2 роки тому

    Code: 18:26
    Execution: 35:25

  • @abhish8867
    @abhish8867 3 роки тому +1

    while initiallizing int a, mam why have u taken num_ver +1...shouldnt it just be num_ver..to create 5*5 matrix

    • @roopamam7005
      @roopamam7005  3 роки тому

      No, observe the code correctly

    • @poojiths2884
      @poojiths2884 3 роки тому +2

      In array memory starts with 0 so,if we have 5 node in array it takes as 4

    • @poojiths2884
      @poojiths2884 3 роки тому +2

      So we add num_ver+1

    • @abhish8867
      @abhish8867 3 роки тому +2

      @@poojiths2884 ohhh, okay okay , thankssss :)

  • @brandm5176
    @brandm5176 3 роки тому +1

    Awesome vid!

  • @harshithavs9254
    @harshithavs9254 4 роки тому

    Thank you mam

  • @kavishkumar2892
    @kavishkumar2892 4 роки тому +1

    Hello mam.. Watching you after long days..

  • @vigneshkanchan3811
    @vigneshkanchan3811 3 роки тому

    Ma'am
    What is the use of
    D=new int[num_ver+1] in
    ford function

  • @shruthik7229
    @shruthik7229 3 роки тому +1

    Nice teaching mam, r u from which college mam??????

    • @roopamam7005
      @roopamam7005  3 роки тому +2

      From an Engineering college in Karnataka....sorry I am not supposed to tell the college name.

    • @shruthik7229
      @shruthik7229 3 роки тому

      @@roopamam7005 it's ok mam

  • @anandkulkarni8818
    @anandkulkarni8818 3 роки тому +1

    I'm getting an error in your code saying"invalid declaration, return type required at public ford(int num_ver)"
    I hv copy pasted it code without modification ...

    • @roopamam7005
      @roopamam7005  3 роки тому

      No thats the working copy of the code, many have tried it, just follow the same steps that I have mentioned and copy the code properly

    • @anandkulkarni8818
      @anandkulkarni8818 3 роки тому +1

      @@roopamam7005 thanks ma'am... I got it

    • @roopamam7005
      @roopamam7005  3 роки тому

      @@anandkulkarni8818 u r wlcm!!!!

    • @rashmikanaik1933
      @rashmikanaik1933 3 роки тому +1

      Same this error I'm getting ma'am please help Tommorrow I'm having internals

    • @anandkulkarni8818
      @anandkulkarni8818 3 роки тому +1

      @@rashmikanaik1933 are you doing it in online compiler?

  • @sandeepkh6423
    @sandeepkh6423 11 місяців тому

    Mam can you share the lab manual mam

  • @kavishkumar2892
    @kavishkumar2892 4 роки тому +2

    Hw r you..

  • @rahulshetty3849
    @rahulshetty3849 2 роки тому +1

    Thank you mam 🙏