FileMood

Download [FreeTutorials.us] data-structures-stack-queue-linkedlist

FreeTutorials us data structures stack queue linkedlist

Name

[FreeTutorials.us] data-structures-stack-queue-linkedlist

 DOWNLOAD Copy Link

Total Size

1.3 GB

Total Files

123

Hash

69934CED9310B31138B8CB81FC2779BF5139DB52

/01 Introduction to the course/

001 Introduction to the course..mp4

25.5 MB

/02 All about Stack/

002 Introduction of Stack.mp4

7.6 MB

003 Some practical example where Stack is used..mp4

10.2 MB

004 Basic Algorithm for Stack data structure..mp4

13.3 MB

005 Implementation of Stack..mp4

15.9 MB

006 Some more explanations about the use of Pointers.mp4

5.3 MB

007 Building a menu for the implementation..mp4

7.9 MB

008 Make the Stack dynamic..mp4

16.4 MB

009 Make the stack more dynamic..mp4

13.3 MB

010 Stack In Action - Decimal to binary conversion.mp4

21.0 MB

011 Stack In Action - Reversing the content of a text file..mp4

18.7 MB

/.../004 Basic Algorithm for Stack data structure/

Stack-algo1.pdf

132.0 KB

/.../005 Implementation of Stack/

stack.c

1.0 KB

/.../007 Building a menu for the implementation/

stack-lec6.c

1.4 KB

/.../008 Make the Stack dynamic/

stack-lec7.c

2.1 KB

/.../009 Make the stack more dynamic/

stack-lec8.c

2.2 KB

/.../010 Stack In Action - Decimal to binary conversion/

print-bin.c

2.0 KB

/.../011 Stack In Action - Reversing the content of a text file/

reverse-file.c

2.6 KB

/quizzes/

001 Basic understanding of Stack..html

5.9 KB

002 Test your understanding on Stack operations.html

6.3 KB

/03 Step-by-step developing a parenthesis checking program using Stack/

012 Understanding the problem..mp4

19.8 MB

013 Developing the algorithm for bracket checking..mp4

17.2 MB

014 The explanation of the algorithm that we develop for parenthesis checking..mp4

29.0 MB

015 Implementation of parenthesis checking program - Part 1.mp4

13.7 MB

016 Implementation of parenthesis checking program - Part 2.mp4

18.6 MB

/.../013 Developing the algorithm for bracket checking/

bracket-checker-algo.txt

0.7 KB

/.../015 Implementation of parenthesis checking program - Part 1/

check-bracket.c

1.8 KB

/.../016 Implementation of parenthesis checking program - Part 2/

check-bracket.c

2.3 KB

/04 Polish notation and Reverse Polish Notation/

017 Introduction to Polish Notation.mp4

12.1 MB

018 Understanding precedence of operators conversion idea - infix to prefixpostfix.mp4

21.4 MB

019 How to evaluate Polish or Reverse Polish Notations..mp4

15.4 MB

020 Algorithm for evaluating Postfix expression..mp4

13.8 MB

021 Implementing evaluation of Postfix expression with C Programming language..mp4

26.9 MB

022 Discussion on how to convert Infix to Postfix..mp4

34.8 MB

023 Infix to Postfix conversion - More examples with procedure.mp4

39.2 MB

024 Elaboration of the procedure that converts infix to postfix..mp4

17.0 MB

025 Writing the algorithm for converting Infix expression to equivalent Postfix..mp4

17.0 MB

026 Dry running the Algorithm for converting Infix to Postfix..mp4

33.2 MB

027 Staring the implementation lets first develop the precedence checker function..mp4

18.4 MB

028 Writing the C function for converting Infix to Postfix..mp4

35.3 MB

029 Combine the conversion and evaluation function in a single program..mp4

5.6 MB

/.../020 Algorithm for evaluating Postfix expression/

postfix-evaluation-algo.txt

0.5 KB

/.../021 Implementing evaluation of Postfix expression with C Programming language/

postfix-eval.c

2.0 KB

/.../025 Writing the algorithm for converting Infix expression to equivalent Postfix/

intopost-algo.txt

0.9 KB

/.../026 Dry running the Algorithm for converting Infix to Postfix/

practice-in-to-post.txt

0.2 KB

/.../027 Staring the implementation lets first develop the precedence checker function/

in-to-post-lec26-practice.c

2.0 KB

/.../028 Writing the C function for converting Infix to Postfix/

in-to-post-lec27.c

2.7 KB

/.../029 Combine the conversion and evaluation function in a single program/

complete-evaluation.c

4.3 KB

/quizzes/

003 Polish Notations.html

5.8 KB

004 Polish Notations converting infix to prefix or postfix..html

6.1 KB

005 Evaluating prefix and postfix expression.html

3.7 KB

006 Converting infix to postfix - the precedence checking.html

4.5 KB

/05 All about Queue/

030 Introduction to Queue.mp4

25.7 MB

031 The FIFO queue implementation idea using Array - Understanding with animation..mp4

3.6 MB

032 Algorithm for FIFO Queue..mp4

9.5 MB

033 Dry run the FIFO queue algorithm..mp4

16.1 MB

034 Implementation of FIFO Queue..mp4

15.5 MB

035 A menu for the Queue program..mp4

8.2 MB

036 The loophole in our implementation of FIFO Queue..mp4

6.9 MB

037 Understanding the loophole why that happened.mp4

10.8 MB

038 Introduction to Circular Queue..mp4

7.4 MB

039 Circular queue operations. How to perform enqueue and dequeue operations..mp4

18.9 MB

040 Algorithm for Circular Queue operations..mp4

8.2 MB

041 Implementation of Circular Queue..mp4

12.7 MB

042 Introduction to Double Ended Queue.mp4

9.6 MB

043 Algorithm development for Double Ended Queue operations..mp4

9.6 MB

044 Dry run of the DEQ algorithm..mp4

14.0 MB

045 Implementation of Double Ended Queue..mp4

21.4 MB

/.../032 Algorithm for FIFO Queue/

FIFO-Queue-algo.txt

1.1 KB

/.../034 Implementation of FIFO Queue/

FIFOQueue-lec33.c

0.9 KB

/.../035 A menu for the Queue program/

FIFOQueue-lec34.c

1.6 KB

/.../041 Implementation of Circular Queue/

cir-queue-lec12.c

1.6 KB

/.../043 Algorithm development for Double Ended Queue operations/

DEQAlgo.txt

0.8 KB

/.../045 Implementation of Double Ended Queue/

deq.c

2.5 KB

/quizzes/

007 Basic understanding of Queue.html

3.7 KB

008 FIFO Queue Algorithm understanding.html

3.9 KB

009 Stack and Queue operations.html

3.6 KB

010 Flaw in the implementation of FIFO Queue.html

5.3 KB

011 Moving rear and front in Circular Queue.html

5.6 KB

012 Dry run Circular Queue operations using the algorithm..html

5.4 KB

/06 Linked List/

046 Introduction to Linked List..mp4

13.8 MB

047 Definition of Linked List conception of Node understanding basic terminologies.mp4

8.7 MB

048 Categories of Linked List - Singly Doubly and Circular Linked List..mp4

4.1 MB

/quizzes/

013 LinkedList Introduction.html

11.3 KB

/07 Singly Linked List/

049 Understanding the struct type we need for implementing singly linked list..mp4

5.2 MB

050 The Singly Linked List operations - starting the program..mp4

14.1 MB

051 Developing Insert At Tail operation - Add a new node as last node..mp4

18.1 MB

052 Implementing Insert at Head - Add a new node as the first node..mp4

22.5 MB

053 Traversing the linked list - printing the content of each node..mp4

18.5 MB

054 Printing the detail of each node of the linked list..mp4

8.8 MB

055 Compiling and executing the program written so far..mp4

20.4 MB

056 Practice for Singly Linked List.html

2.2 KB

057 Developing find operation - to search for a target in the linked list..mp4

7.4 MB

058 Load data from file and build the linked list..mp4

23.9 MB

059 Creating Linked List from randomly generated integer numbers..mp4

17.8 MB

060 Delete first operation to delete the first node..mp4

17.7 MB

061 Delete last operation to delete the last node..mp4

28.3 MB

062 Delete a node that contain a target data..mp4

51.6 MB

063 Reverse the linked list..mp4

18.3 MB

064 Traverse the singly linked list recursively..mp4

18.4 MB

065 Implementation of Stack using singly linked list..mp4

19.3 MB

066 Implementation of Queue using Linked List.mp4

17.6 MB

/.../055 Compiling and executing the program written so far/

linklist-lec55.c

6.2 KB

/.../063 Reverse the linked list/

linklist.c

10.5 KB

/.../064 Traverse the singly linked list recursively/

linklist-recursive-traversal.c

2.6 KB

/.../065 Implementation of Stack using singly linked list/

linkstack.c

3.3 KB

/.../066 Implementation of Queue using Linked List/

linkqueue.c

3.3 KB

/08 Doubly Linked List/

067 Introduction to Doubly Linked List..mp4

3.9 MB

068 Starting the program to implement various operations for Doubly Linked List..mp4

23.6 MB

069 Implementation of Add First method to add a new node as the first node..mp4

27.6 MB

070 AddLast implementation to add a new node as the last node..mp4

36.4 MB

071 Find and Insert After and Insert Before operation..mp4

39.0 MB

072 Deleting a node - delete first delete last and delete a target..mp4

47.5 MB

073 Double Ended Queue using doubly linked list..mp4

17.2 MB

/.../072 Deleting a node - delete first delete last and delete a target/

dbllist.c

12.1 KB

/.../073 Double Ended Queue using doubly linked list/

dequeue.c

5.3 KB

/09 Circular Linked List/

074 Introduction to Circular Linked List..mp4

10.5 MB

075 Insert operation for Circular Linked List..mp4

15.7 MB

076 Delete Node operation..mp4

11.0 MB

077 Developing find and print operation..mp4

15.5 MB

/.../077 Developing find and print operation/

linklist.c

4.9 KB

/

[FreeTutorials.us].txt

0.1 KB

[FreeTutorials.us].url

0.1 KB

 

Total files 123


Copyright © 2024 FileMood.com