* Cantinho Satkeys

Refresh History
  • JPratas: try65hytr Pessoal  4tj97u<z classic k7y8j0
    11 de Julho de 2025, 03:54
  • FELISCUNHA: ghyt74  pessoal   49E09B4F
    10 de Julho de 2025, 10:40
  • j.s.: dgtgtr a todos  4tj97u<z
    07 de Julho de 2025, 13:50
  • FELISCUNHA: Votos de um santo domingo para todo o auditório  4tj97u<z
    06 de Julho de 2025, 11:43
  • j.s.: [link]
    05 de Julho de 2025, 16:31
  • j.s.: dgtgtr a todos  4tj97u<z
    05 de Julho de 2025, 16:31
  • j.s.: h7t45 ao convidado de Honra batatinha pela sua ajuda
    05 de Julho de 2025, 16:30
  • FELISCUNHA: ghyt74  pessoal   4tj97u<z
    04 de Julho de 2025, 11:58
  • JPratas: dgtgtr Pessoal  101041 Vamos Todos Ajudar na Manutenção do Forum, Basta 1 Euro a Cada Um  43e5r6
    03 de Julho de 2025, 19:02
  • cereal killa: Todos os anos e preciso sempre a pedir esmolas e um simples gesto de nem que seja 1€ que fosse dividido por alguns ajudava, uma coisa e certa mesmo continuando isto vai levar volta a como se tem acesso aos tópicos, nunca se quis implementar esta ideia mas quem não contribuir e basta 1 € por ano não terá acesso a sacar nada, vamos ver desenrolar disto mais ate dia 7,finalmente um agradecimento em nome do satkeys a quem já fez a sua doação, obrigada
    03 de Julho de 2025, 15:07
  • m1957: Por favor! Uma pequena ajuda, não deixem que o fórum ecerre. Obrigado!
    03 de Julho de 2025, 01:10
  • j.s.: [link]
    02 de Julho de 2025, 21:09
  • j.s.: h7t45 ao membro anónimo pela sua ajuda  49E09B4F
    02 de Julho de 2025, 21:09
  • j.s.: dgtgtr a todos  4tj97u<z
    01 de Julho de 2025, 17:18
  • FELISCUNHA: Votos de um santo domingo para todo o auditório  4tj97u<z
    29 de Junho de 2025, 11:59
  • m1957: Foi de boa vontade!
    28 de Junho de 2025, 00:39
  • j.s.: passem f.v. por aqui [link]    h7t45
    27 de Junho de 2025, 17:20
  • j.s.: renovamos o nosso pedido para uma pequena ajuda para pagemento  do nosso forum
    27 de Junho de 2025, 17:19
  • j.s.: h7t45 aos convidados de honra Felizcunha e M1957 pela ajuda
    27 de Junho de 2025, 17:15
  • j.s.: dgtgtr a todos  4tj97u<z
    27 de Junho de 2025, 17:13

Autor Tópico: Live Coding with Data Structures for campusinternshipjobs  (Lida 91 vezes)

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

Offline mitsumi

  • Sub-Administrador
  • ****
  • Mensagens: 121842
  • Karma: +0/-0
Live Coding with Data Structures for campusinternshipjobs
« em: 31 de Julho de 2021, 07:46 »

MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz, 2 Ch
Genre: eLearning | Language: English + srt | Duration: 86 lectures (24h 45m) | Size: 9.4 GB
Hands on Implementation / Coding with Data Structures

What you'll learn:
Data Structures programming,

Requirements
C language

Description
A data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data. Different types of data structures are suited to different kinds of applications, and some are highly specialized to specific task. Data structures provide a means to manage large amounts of data efficiently. Efficient data structures are key to designing efficient algorithms. Data structures can be used to organize the storage and retrieval of information stored in both main memory and secondary memory.

Data structures serve as the basis for ADT. The ADT (Abstract Data Types) defines the logical form of the data type. Data structures are based on the ability of a computer to fetch and store data at any place in its memory, specified by a pointer.

The array and record data structures are based on computing the addresses of data items with arithmetic operations. The linked data structures are based on storing addresses of data items within the structure itself. The implementation of a data structure usually requires writing a set of procedures that create and manipulate instances of that structure.

A linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Each element points to the next. It is a data structure consisting of a collection of nodes which together represent a sequence. Each node contains: data, and a link to the next node in the sequence. This structure allows for efficient insertion or removal of elements from any position in the sequence during iteration.

Following topics are covered as part of hands-on / Live coding videos :

Linked Lists (LL) Implementation / Coding:

Concept of link

Creating a Linked List (LL)

Appending a node to LL

Display of LL

Length of LL (count)

Reversing of LL

Sorting

Adding node at Start of LL

Inserting node in between of LL

Deleting a node

Creating a Double LL

Appending a node to Double LL

Display of Double LL

Length of Double LL (count)

Reversing of Double LL

Inserting a node in between a Double LL

Rotate Double LL

Count Pairs with criteria for a Double LL

Questions

Circular LL overview (access pointers)

Creating a Circular LL

Adding node at Start Circular LL (approach 1)

Traversal / Display Circular LL (approach 1)

Inserting node in between a Circular LL (approach 1)

Deleting a node

Adding node at End Circular LL (approach 2)

Traversal / Display Circular LL (approach 2)

Circular LL - Queue (Adding Node)

Circular LL - Queue (Removing Node)

Questions

Stacks (Implementation / Coding):

Stack overview

Stack with Array

Expressions

Evaluation of Postfix expression

Infix to Post fix

Evaluation of Prefix overview. infix to prefix overview

Application: Finding next big element

Stack using Linked List

Reversing Stack with Linked List

Questions

Queues (Implementation / Coding) :

Queue Overview

Queue using Array

Priority Queue with Array

Queue using Linked List

Priority Queue using Double Linked List

Questions

Recursion

Recursion Overview, Phases, Types

Recursive Functions

Linked List operations using Recursion

Questions

Trees

Binary Trees

Tree Traversals

Inorder

preorder

postorder

Binary Search Trees (BST)

BST - Insertion

BST - Insertion & Traversals

Traversals Explained

BST - Search

Search operations

BST Deletion

Deletion cases

Binary Tree to BST conversion

Identify a Tree to be BST

Identify zero, one child nodes of BST

Questions

Sorting

Selection Sort

Selection Sort Analysis

Bubble Sort

Bubble Sort Analysis

Insertion Sort

Insertion Sort Analysis

Quick Sort

Quick Sort Analysis

Quick Sort, Merge Sort Discussion

Questions

Topics of Data Structures and interaction

Who this course is for
fresh students, C programmers


Download link:
Só visivel para registados e com resposta ao tópico.

Only visible to registered and with a reply to the topic.

Links are Interchangeable - No Password - Single Extraction