Udemy
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
Development
Web Development Data Science Mobile Development Programming Languages Game Development Database Design & Development Software Testing Software Engineering Development Tools No-Code Development
Business
Entrepreneurship Communications Management Sales Business Strategy Operations Project Management Business Law Business Analytics & Intelligence Human Resources Industry E-Commerce Media Real Estate Other Business
Finance & Accounting
Accounting & Bookkeeping Compliance Cryptocurrency & Blockchain Economics Finance Finance Cert & Exam Prep Financial Modeling & Analysis Investing & Trading Money Management Tools Taxes Other Finance & Accounting
IT & Software
IT Certification Network & Security Hardware Operating Systems Other IT & Software
Office Productivity
Microsoft Apple Google SAP Oracle Other Office Productivity
Personal Development
Personal Transformation Personal Productivity Leadership Career Development Parenting & Relationships Happiness Esoteric Practices Religion & Spirituality Personal Brand Building Creativity Influence Self Esteem & Confidence Stress Management Memory & Study Skills Motivation Other Personal Development
Design
Web Design Graphic Design & Illustration Design Tools User Experience Design Game Design Design Thinking 3D & Animation Fashion Design Architectural Design Interior Design Other Design
Marketing
Digital Marketing Search Engine Optimization Social Media Marketing Branding Marketing Fundamentals Marketing Analytics & Automation Public Relations Advertising Video & Mobile Marketing Content Marketing Growth Hacking Affiliate Marketing Product Marketing Other Marketing
Lifestyle
Arts & Crafts Beauty & Makeup Esoteric Practices Food & Beverage Gaming Home Improvement Pet Care & Training Travel Other Lifestyle
Photography & Video
Digital Photography Photography Portrait Photography Photography Tools Commercial Photography Video Design Other Photography & Video
Health & Fitness
Fitness General Health Sports Nutrition Yoga Mental Health Dieting Self Defense Safety & First Aid Dance Meditation Other Health & Fitness
Music
Instruments Music Production Music Fundamentals Vocal Music Techniques Music Software Other Music
Teaching & Academics
Engineering Humanities Math Science Online Education Social Science Language Teacher Training Test Prep Other Teaching & Academics
AWS Certification Microsoft Certification AWS Certified Solutions Architect - Associate AWS Certified Cloud Practitioner CompTIA A+ Cisco CCNA Amazon AWS CompTIA Security+ AWS Certified Developer - Associate
Photoshop Graphic Design Adobe Illustrator Drawing Digital Painting InDesign Character Design Canva Figure Drawing
Life Coach Training Neuro-Linguistic Programming Mindfulness Personal Development Personal Transformation Life Purpose Meditation Coaching Neuroscience
Web Development JavaScript React CSS Angular PHP WordPress Node.Js Python
Google Flutter Android Development iOS Development Swift React Native Dart Programming Language Mobile Development Kotlin SwiftUI
Digital Marketing Google Ads (Adwords) Social Media Marketing Google Ads (AdWords) Certification Marketing Strategy Internet Marketing YouTube Marketing Email Marketing Retargeting
SQL Microsoft Power BI Tableau Business Analysis Business Intelligence MySQL Data Analysis Data Modeling Big Data
Business Fundamentals Entrepreneurship Fundamentals Business Strategy Online Business Business Plan Startup Freelancing Blogging Home Business
Unity Game Development Fundamentals Unreal Engine C# 3D Game Development C++ 2D Game Development Unreal Engine Blueprints Blender
30-Day Money-Back Guarantee

This course includes:

  • 3.5 hours on-demand video
  • 27 downloadable resources
  • Full lifetime access
  • Access on mobile and TV
Development Software Engineering C

Algorithms in C : Concepts, Examples, Code + Time Complexity

Learn algorithms in C language. Understand Logic with examples, practice code and crack those programming interviews!
Rating: 4.0 out of 54.0 (66 ratings)
2,147 students
Created by Engineering Mentor, Pratibha B.
Last updated 4/2017
English
English
30-Day Money-Back Guarantee

What you'll learn

  • Learn the concepts behind Most Popular Algorithms used in Computer Science
  • Understand how algorithms work with the help of diagrams, examples and pseudocode
  • Practise Algorithm Implementation with the help of included Programs in C language
  • Understand how to use algorithms to implement most important logics in any programming.

Course content

9 sections • 34 lectures • 3h 33m total length

  • Preview03:32
  • Preview3 pages

  • Preview04:33
  • Bubble Sort Algorithm
    05:25
  • Sequential Search Algorithm
    06:09
  • Brute Force String Matching Algorithm
    06:38
  • Brute Force Quiz
    4 questions

  • Merge Sort Algorithm
    08:57
  • Quick Sort Algorithm
    08:01
  • Divide and Conquer Quiz
    2 questions

  • Binary Search Algorithm
    11:38
  • Insertion Sort Algorithm
    04:46
  • Depth First Search Algorithm
    06:16
  • Breadth First Search Algorithm
    08:02
  • Decrease and Conquer Quiz
    5 questions

  • Heaps
    06:23
  • Heap Construction [bottom-up approach]
    08:36
  • Heap Sort Algorithm
    07:16

  • Warshall's Algorithm
    09:27
  • Floyd's Algorithm
    14:16
  • Dynamic Programming Quiz
    3 questions

  • Prim's Algorithm
    10:08
  • Kruskal's Algorithm
    03:51
  • Greedy Technique Quiz
    5 questions

  • Preview07:36
  • Asymptotic Notations
    06:13
  • Time Complexity - Selection Sort Algorithm
    03:21
  • Time Complexity - Bubble Sort Algorithm
    03:45
  • Time Complexity - Sequential Search Algorithm
    02:51
  • Time Complexity - String Matching Algorithm
    03:47
  • Time Complexity - Insertion Sort Algorithm
    03:35
  • Time Complexity - Warshall's Algorithm
    01:58
  • Time Complexity - Floyd's Algorithm
    02:13
  • Master Theorem
    08:24
  • Time Complexity - Merge Sort Algorithm
    04:41
  • Time Complexity Quiz
    6 questions

  • Euclid's Algorithm [GCD of two numbers]
    05:39
  • C Program on Euclid's Algorithm
    4 pages
  • Extended Euclidean Algorithm
    12:05
  • RSA Algorithm
    06:23
  • Number Theory Quiz
    3 questions

Requirements

  • Basic Knowledge of any programming language, preferably 'C'
  • A C compiler and Editor to practise the algorithm programs
  • Interest in Algorithms and programming
  • No additional knowledge is required
  • You will need a computer with internet to access lectures and resources

Description

Algorithms in C : Concepts, Examples, Code + Time Complexity (Recently updated : January 14, 2017!)

What's New: Time Complexity of Merge Sort, Extended Euclidean Algorithm in Number Theory section, New section on Transform and Conquer algorithms

Algorithms are very important for programmers to develop efficient software designing and programming skills. This Course introduces you to most important algorithms in computer science. Each video explains the concept/logic behind the algorithm, provides an example and explains pseudo-code. Each video also has working C programs of algorithm implementations with sample input & output. This course will help you crack those programming interviews on algorithms.

Why Take this Course?

Most of the companies in today's world depend on software for their daily operations. How do these software take right decisions and keep these companies running in the right direction? Well, it's all in their programming. Programmers over the decades have been writing code which perform right operations in right conditions. This is done using Algorithms.

Taking this algorithms course will help you to understand how to implement logic in the form of a code in an optimal way and also enables you to write the programs efficiently. In this course you will learn how the most important and most common algorithms used in programming are designed and implemented. This course will kick start your journey in the world of programming with algorithms.

How is this course designed?

This Course is structured into following sections:

Overview: This section introduces you to the course, provides information about the author, course structure and gives you answers to some of the frequently asked questions by students.

Brute Force: This section explains the brute force approach to problem solving. You will understand the how the algorithms selection sort, bubble sort, sequential search and string matching work.

Divide and Conquer: This section deals with algorithms based on Divide and Conquer technique. Two sorting algorithms - quick sort and merge sort are explained.

Decrease and Conquer: In this section decrease and conquer approach and its variants are explained. Binary search and insertion sort algorithms are explained with an example.

Transform and Conquer: Significance of transform-and-conquer technique and algorithms like heap-sort will be explained here. Lectures on Heaps, heap construction and heapsort algorithm are added. Each algorithm is explained with an example in a lucid way.

Dynamic Programming: This section explains how to solve problems with overlapping sub-problems. Warshall's algorithm and Floyd's algorithm are explained.

Greedy Technique: This section explains algorithms based on Greedy technique. Section begins with explanation on minimum spanning tree concept. Two algorithms (Prim's and Kruskal's) to construct a minimum spanning tree of a given graph are explained step-by-step.

Number Theory : This section deals with the algorithms involving numerical computations. Euclid's Algorithm, Extended-Euclidean Algorithm and RSA algorithm are explained with example.

Time Complexity : This section explains the importance of time complexity analysis, the asymptotic notations to denote the time complexity of algorithms.

Also, each algorithm's time complexity is explained in separate video lectures.

Students can benefit by learning about designing and implementing algorithms in C. Job Seekers can also benefit by using the information in preparing for their programming interviews.

Once you are enrolled, you get a life time access to all the resources and lectures in this course. This course is always evolving with new lectures, resources and quizzes to keep you up-to-date. So take this course now and learn how to design and implement algorithms.

Who this course is for:

  • Computer Science Students who are taking Algorithms as an Academic Course
  • IT students and Developers who want to learn how to design and implement logic for any programs
  • Job aspirants who want to want to be successful at Developer Interviews
  • Non IT Students who wish to understand logic for writing efficient code
  • Anyone interested in learning most popular algorithms

Instructors

Engineering Mentor
Courses for IT students
Engineering Mentor
  • 4.2 Instructor Rating
  • 941 Reviews
  • 7,916 Students
  • 3 Courses

Engineering Mentor is an online educational start-up, providing educational resources to IT and non IT students. At Engineering Mentor, we create high quality resources in clear and easy to understand methods.

We have a team of qualified engineers who create resources to guide students through the toughest aspects of technical and non technical education.

Pratibha B.
IT Professional, Instructor
Pratibha B.
  • 4.2 Instructor Rating
  • 682 Reviews
  • 5,573 Students
  • 2 Courses

Pratibha has a master's degree in Computer Science and has been involved with IT industry since 2010.

Pratibha has worked with Infosys Company for clients like Cisco. She is a CCNA Certified Engineer with experience in Automation and Manual Testing. Pratibha has been a part of Engineering Mentor expert teacher's group for over a year now and has been actively involved in online and offline teachings on software Testing.

  • Udemy for Business
  • Teach on Udemy
  • Get the app
  • About us
  • Contact us
  • Careers
  • Blog
  • Help and Support
  • Affiliate
  • Terms
  • Privacy policy
  • Cookie settings
  • Sitemap
  • Featured courses
Udemy
© 2021 Udemy, Inc.