Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Files

Latest commit

2106070 · Aug 23, 2023

History

History
319 lines (271 loc) · 25.7 KB

README.md

File metadata and controls

319 lines (271 loc) · 25.7 KB

The "C# Advanced" course builds on the skills of working with the C# language and the .NET platform by addressing more complex concepts typical of the language. During the course, the audience will learn to create and work with linear data structures. Knowledge of working with arrays will be upgraded by learning how to work with multidimensional arrays or matrices. There will be an opportunity to get acquainted with the Generic concept - creating template classes and methods. Algorithmic problems will be solved (problem solving skills), streams, files and directories will be worked with. Attention is paid to the functional programming paradigm, as well as to the main tool based on it - LINQ for processing data streams. The development environment that will be used by the training team is Microsoft Visual Studio 2022, but each trainee is free to use tools of preference.

Topics

  • Stacks and Queues
  • Multidimensional Arrays
  • Sets and Dictionaries Advanced
  • Streams, Files and Directories
  • Functional Programming
  • Defining Classes
  • Implementing Linked List
  • Generics
  • Iterators and Comparators
  • Algorithms Introduction

Acquired skills:

  • Working with multidimensional and associative data structures
  • Creating linear data structures
  • Application of basic algorithms
  • Application of functional programming
  • Work with data streams, files and directories
  • Working with classes, creating template classes

  Certificate(Click here to preview)  

 

Stacks and Queues

Lab Exercises
1. Reverse Strings 1. Basic Stack Operations
2. Stack Sum 2. Basic Queue Operations
3. Simple Calculator 3. Maximum and Minimum Element
4. Matching Brackets 4. Fast Food
5. Print Even Numbers 5. Fashion Boutique
6. Supermarket 6. Songs Queue
7. Hot Potato 7. Truck Tour
8. Traffic Jam 8. Balanced Parenthesis
9. Simple Text Editor
10. CrossRoads
11. Key Revolver
12. Cups and Bottles

 

Multidimensional Arrays

Lab Exercises
1. Sum Matrix Elements 1. Diagonal Difference
2. Sum Matrix Columns 2. 2x2 Square Matrix
3. Primary Diagonal 3. Maximal Sum
4. Symbol in Matrix 4. Matrix Shuffling
5. Square with Maximum Sum 5. SnakeMoves
6. Jagged-Array Modification 6. Jagged Array Manipulator
7. Pascal Triangle 7. Knight Game
8. Bombs
9. Miner
10. Radioactive Mutant Vampire Bunnies

 

Sets and Dictionaries Advanced

Lab Exercises
1. Count Same Values in Array 1. Unique Usernames
2. Average Student Grades 2. Sets of Elements
3. Largest Three Numbers 3. Periodic Table
4. Product Shop 4. Even Times
5. Cities by Continent and Country 5. Count Symbols
6. Record Unique Names 6. Wardrobe
7. Parking Lot
8. SoftUni Party

 

Streams, Files and Directories

Lab Exercises
1. Odd Lines 1. Even Lines
2. Line Numbers 2. Line Numbers
3. Word Count 3. Copy Binary File
4. Merge Text Files 4. Directory Traversal
5. Extract Special Bytes 5. Copy Directory
6. Split, Merge Binary Files 6. Zip and Extracts
7. Folder Size

 

Functional Programming

Lab Exercises
1. Sort Even Numbers 1. Action Print
2. Sum Numbers 2. Knights of Honor
3. Count Uppercase Words 3. Custom Min Function
4. Add VAT 4. Find Evens or Odds
5. Filter by Age 5. Applied Arithmetics
6. Reverse and Exclude
7. Predicate for Names
8. List of Predicates
9. Predicate Party!
10. The Party Reservation Filter Module
11. TriFunction

 

Defining Classes

Lab Exercises
1. Car 1. Define a Class Person
2. Car Extension 2. Creating Constructors
3. Car Constructors 3. Oldest Family Member
4. Car Engine and Tires 4. Opinion Poll
5. Special Cars 5. Date Modifier
6. Speed Racing
7. Raw Data
8. Car Salesman
9. Pokemon Trainer
10. SoftUni Parking

 

Generics

Lab Exercises
1. Box 1. Generic Box of String
2. Array Creator 2. Generic Box of Integer
3. Generic Scale 3. Generic Swap Method String
4. Generic Swap Method Integer
5. Generic Count Method String
6. Generic Count Method Double
7. Tuple
8. Threeuple

 

Iterators and Comparators

Lab Exercises
1. Library 1. Listy Iterator
2. Library Iterator 2. Collection
3. Comparable Book 3. Stack
4. Book Comparer 4. Froggy
5. Comparing Objects
6. Equality Logic
7. Custom Comparator

 

Other Exercises

Basic Algorithms Create Custom Data Structures
1. Recursive Array Sum 1. Implement the Custom Doubly Linked List Class
2. Recursive Factorial 2. Implement the CustomList Class
3. Sum of Coins 3. Implement the CustomStack Class
4. Set Cover 4. Implement the CustomQueue Class
5. Merge Sort 5. Implement Custom Linked List
6. Quicksort
7. Binary Search

Back top top