Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
/ ece Public archive

A wrapup of my undergrad work.

Notifications You must be signed in to change notification settings

pavlouk/ece

Repository files navigation

Electrical & Computer Engineer Collection

Source Code Report and Results Analysis

This repository contain documents referenced to source code contained at the other repository.

Contents

  • Searching and Sparse Data

    • Report on Hash Table Implementation
  • Implementation with: MATLAB, C/C++, Python

Directories include

  1. Communication-system modeling --- MATLAB

    • DTMF decoder
    • Noise-free channel's impulse response
  2. Google Code Jam Qualification Rounds

    • 2015: B (Python)
    • 2016: A, C (C++)
    • 2017: A, B (C++)
  3. Numerical Analysis Algorithms --- C

    • Newton-Raphson Root Finding Method
    • Simpson's Integration
    • Trapezoidal Integration
    • Euler's Differential Equation Solution
    • String-based Addition and Subtraction
  4. Searching Algorithms and Sparse Data Representation --- Python

    • binary_search.py
    • floyd_warshall.py
    • maximum integer subarray (naive, partial sums, dynamic programming)
    • sparse_matrices_airports.py
    • chaining_search.py
    • hash_table.py
    • complete_search.py
    • open_address_search.py