* Cantinho Satkeys

Refresh History
  • JPratas: dgtgtr Pessoal  49E09B4F k7y8j0
    06 de Novembro de 2024, 17:19
  • FELISCUNHA: Votos de um santo domingo para todo o auditório  4tj97u<z
    03 de Novembro de 2024, 10:49
  • j.s.: bom fim de semana  43e5r6 49E09B4F
    02 de Novembro de 2024, 08:37
  • j.s.: ghyt74 a todos  4tj97u<z
    02 de Novembro de 2024, 08:36
  • FELISCUNHA: ghyt74   49E09B4F  e bom feriado   4tj97u<z
    01 de Novembro de 2024, 10:39
  • JPratas: try65hytr Pessoal  h7ft6l k7y8j0
    01 de Novembro de 2024, 03:51
  • j.s.: try65hytr a todos  4tj97u<z
    30 de Outubro de 2024, 21:00
  • JPratas: dgtgtr Pessoal  4tj97u<z k7y8j0
    28 de Outubro de 2024, 17:35
  • FELISCUNHA: Votos de um santo domingo para todo o auditório  k8h9m
    27 de Outubro de 2024, 11:21
  • j.s.: bom fim de semana   49E09B4F 49E09B4F
    26 de Outubro de 2024, 17:06
  • j.s.: dgtgtr a todos  4tj97u<z
    26 de Outubro de 2024, 17:06
  • FELISCUNHA: ghyt74   49E09B4F  e bom fim de semana
    26 de Outubro de 2024, 11:49
  • JPratas: try65hytr Pessoal  101yd91 k7y8j0
    25 de Outubro de 2024, 03:53
  • JPratas: dgtgtr A Todos  4tj97u<z 2dgh8i k7y8j0
    23 de Outubro de 2024, 16:31
  • FELISCUNHA: ghyt74  pessoal   49E09B4F
    23 de Outubro de 2024, 10:59
  • j.s.: dgtgtr a todos  4tj97u<z
    22 de Outubro de 2024, 18:16
  • j.s.: dgtgtr a todos  4tj97u<z
    20 de Outubro de 2024, 15:04
  • FELISCUNHA: Votos de um santo domingo para todo o auditório  101041
    20 de Outubro de 2024, 11:37
  • axlpoa: hi
    19 de Outubro de 2024, 22:24
  • FELISCUNHA: ghyt74   49E09B4F  e bom fim de semana  4tj97u<z
    19 de Outubro de 2024, 11:31

Autor Tópico: Dealing With Algorithms  (Lida 36 vezes)

0 Membros e 1 Visitante estão a ver este tópico.

Online mitsumi

  • Moderador Global
  • ***
  • Mensagens: 115840
  • Karma: +0/-0
Dealing With Algorithms
« em: 03 de Novembro de 2022, 14:50 »

Dealing With Algorithms
Published 11/2022
MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz
Language: English | Size: 5.03 GB | Duration: 14h 3m

A guide on Algorithms

What you'll learn
A milestone for mastering Data Structures and Algorithms.
Helps to build confidence in facing technical interview questions in product companies.
Helps to understand the designing of Algorithm by familiarising various design techniques - foundation skill for any software engineer.
Become a confident programmer - Understanding and applying different data structures and algorithm while designing any product
To build a successful career in software industry - Regular practise with DSA will help to gain momentum in overall software engineer journey.
To be a good team player when starting you career
And much, much more.
Requirements
Knowledge in any of the programming language.
Knowing Java is a plus.
Description
This course covers the training on algorithms. Most importantly it covers mainly the various design techniques that are available to solve different problems. Some most popular algorithms based these techniques is being covered in detail too. The training is released as two courses . The first part "Dealing data structures" covers only the data structures. This is second part and it covers about Algorithms with sub topics such as Algorithmic design principles, Space Complexity, Time complexity , asymptotic notations etc.As the two topics - Data structures and Algorithms are released as two, it enables students to structure and plan their learning journey first by mastering the data structures and then switching on to algorithms. Consciously put effort on reducing the course length so that students don't feel like it takes long hours to finish the course. Carefully chosen the topics that enable students to enhance their career and build confidence to become a great programmer.Few words to stress on:After finishing each of the topic in the course you must practically spend time and implement programs related to that data structure. The implementation code is being uploaded as part of resource section. You can refer that as well. This is the only way to get thorough with the topic. All the best!
Overview
Section 1: Introduction
Lecture 1 What is covered in the course?
Lecture 2 Who and Why you should watch this course?
Section 2: Introduction to Algorithms
Lecture 3 Introductory Content
Lecture 4 Why Algorithms?
Lecture 5 Characteristics of an algorithm
Section 3: Design and Analysis of Algorithm
Lecture 6 Steps involved in design & analysis of algorithm
Lecture 7 Pseudocode and flowchart
Lecture 8 Solving a problem using different algorithms
Section 4: Performance Analysis
Lecture 9 What is Time complexity & Space Complexity ?
Lecture 10 Asymptotic Notations
Lecture 11 Big O notation
Lecture 12 Big Omega and Theta notation
Section 5: Time Complexity & Space Complexity
Lecture 13 Types of Time complexities
Lecture 14 Types of time complexities in detail
Lecture 15 Calculating Space Complexity
Lecture 16 Calculating Time Complexity
Section 6: Algorithm design techniques & Brute force approach
Lecture 17 Various algorithm design techniques
Lecture 18 Brute force Approach and Example algorithm1: Travelling Salesman Problem
Lecture 19 Exact String Matching Problem using brute force approach
Section 7: Divide and conquer design technique
Lecture 20 Introduction to Divide & Conquer approach and Example Algorithm1: Tower of Hanoi
Lecture 21 A variant to Divide and Conquer: Decrease and Conquer
Lecture 22 Decrease and Conquer Approach Algorithm: Binary Search
Lecture 23 Divide and Conquer Technique Example Algorithm 2: Quick Sort
Lecture 24 Master theorem for Divide and Conquer Recurrences
Lecture 25 Divide and Conquer Technique Example Algorithm 3: Merge sort
Lecture 26 Divide and Conquer Technique Example Algorithm 4: Heap sort
Section 8: Greedy algorithm technique
Lecture 27 Introduction to greedy algorithm & Greedy algorithm example 1: Huffman Coding
Lecture 28 Greedy algorithm example 2: Kruskal's algorithm part 1
Lecture 29 Kruskal's algorithm part 2 - Union find algorithm and detecting cycle in graph
Lecture 30 Kruskal's algorithm part 3 - Union find algorithm by path compression and rankin
Lecture 31 Greedy Algorithm example 3: Dijkstra's Shortest Path Algorithm
Lecture 32 Greedy Algorithm example 4: Prim's algorithm
Lecture 33 Greedy Algorithm example 4: Fractional knapsack problem
Section 9: Dynamic Programming
Lecture 34 Introduction to Dynamic Programming
Lecture 35 Dynamic Programming Example Algorithm 1: Matrix chain multiplication - part 1
Lecture 36 Dynamic Programming Example Algorithm 1: Matrix chain multiplication - part 2
Lecture 37 Dynamic Programming Example Algorithm 1: Matrix chain multiplication - part 3
Lecture 38 Dynamic Programming Example Algorithm 2: Least Common Subsequence - part 1
Lecture 39 Dynamic Programming Example Algorithm 2: Least Common Subsequence - part 2
Lecture 40 Dynamic Programming Example 3: Floyd Warshall Shortest path algorithm - part 1
Lecture 41 Dynamic Programming Example 3: Floyd Warshall Shortest path algorithm - part 2
Lecture 42 Dynamic Programming Example 4: 01 knapsack problem
Lecture 43 Dynamic Programming Example 4: 01 knapsack problem implementation
Lecture 44 Dynamic Programming Example 5: Travelling Salesman Problem
Lecture 45 Dynamic Programming Example 5: Travelling Salesman Problem implementation
Section 10: Backtracking design technique
Lecture 46 Introduction to backtracking
Lecture 47 Backtracking algorithm 1 - N Queen problem
Lecture 48 Backtracking algorithm 2 - Graph colouring problem
Lecture 49 Backtracking algorithm 3 - Hamiltonian Cycle
Section 11: Branch and Bound design technique
Lecture 50 Introduction to Branch and Bound design technique
Lecture 51 Branch and Bound Algorithm example 1 : 01 knapsack problem
Lecture 52 Branch and Bound Algorithm example 1 : 01 knapsack problem implementation
Lecture 53 Branch and Bound Algorithm example 2: Travelling salesman problem
Lecture 54 Branch and Bound Algorithm example 2: Travelling Salesman problem implementation
Section 12: Classification Of Algorithms
Lecture 55 P, NP - NP Hard and NP Complete
Section 13: Conclusion
Lecture 56 Congratulations!!!
Data structures and Algorithm is the base for Software engineering. Hence anyone who has aspiration to become a great programmer can watch this course


Download link

rapidgator.net:
Citar
https://rapidgator.net/file/eefdf93b1e62e4750d7c85420358a4d6/ddeyg.Dealing.With.Algorithms.part1.rar.html
https://rapidgator.net/file/f06b198e765f7702e0956a783afe12da/ddeyg.Dealing.With.Algorithms.part2.rar.html
https://rapidgator.net/file/e96cc6ed421da14b330d7b7e5107cb3e/ddeyg.Dealing.With.Algorithms.part3.rar.html
https://rapidgator.net/file/dbf529969976e77ae5e70f7e8601dcdc/ddeyg.Dealing.With.Algorithms.part4.rar.html
https://rapidgator.net/file/b296941b94aa49844056e602dea11915/ddeyg.Dealing.With.Algorithms.part5.rar.html
https://rapidgator.net/file/a6ee167ae5a9aaf5d1364d16a3baf4b1/ddeyg.Dealing.With.Algorithms.part6.rar.html

uploadgig.com:
Citar
https://uploadgig.com/file/download/dd61aE0f496d8583/ddeyg.Dealing.With.Algorithms.part1.rar
https://uploadgig.com/file/download/745c056Eee342936/ddeyg.Dealing.With.Algorithms.part2.rar
https://uploadgig.com/file/download/125EBd8fBf1ec599/ddeyg.Dealing.With.Algorithms.part3.rar
https://uploadgig.com/file/download/Eb27F16f62238048/ddeyg.Dealing.With.Algorithms.part4.rar
https://uploadgig.com/file/download/fc867e516c3Cb98F/ddeyg.Dealing.With.Algorithms.part5.rar
https://uploadgig.com/file/download/80038eFc4667e1ad/ddeyg.Dealing.With.Algorithms.part6.rar

nitroflare.com:
Citar
https://nitroflare.com/view/B7CE71B455E6769/ddeyg.Dealing.With.Algorithms.part1.rar
https://nitroflare.com/view/469D02746EE5A57/ddeyg.Dealing.With.Algorithms.part2.rar
https://nitroflare.com/view/F85EBA91E5F2478/ddeyg.Dealing.With.Algorithms.part3.rar
https://nitroflare.com/view/9FDFD3B7A059293/ddeyg.Dealing.With.Algorithms.part4.rar
https://nitroflare.com/view/07CBC2EB07DC536/ddeyg.Dealing.With.Algorithms.part5.rar
https://nitroflare.com/view/875E2A4218C895D/ddeyg.Dealing.With.Algorithms.part6.rar

1dl.net:
Citar
https://1dl.net/dcghsqrtp3f7/ddeyg.Dealing.With.Algorithms.part1.rar.html
https://1dl.net/3e93zqirhfdu/ddeyg.Dealing.With.Algorithms.part2.rar.html
https://1dl.net/159o13thf2be/ddeyg.Dealing.With.Algorithms.part3.rar.html
https://1dl.net/wmaskimlx737/ddeyg.Dealing.With.Algorithms.part4.rar.html
https://1dl.net/wb1hp3wqt2m6/ddeyg.Dealing.With.Algorithms.part5.rar.html
https://1dl.net/wzujzxf7doy3/ddeyg.Dealing.With.Algorithms.part6.rar.html