CS61A-Spring2022

CS 61A - Spring 2022

https://caiscoding.github.io/CS61A-Spring2022/

This is my repository for labs, homeworks and projects when going through the course, CS 61A, Spring 2022, from U.C. Berkeley.

Warning This repository contains codes for tasks of CS 61A, so please be careful about not viloating the course’s policies and not copy-pasting these codes.

Overview

The CS 61 series is an introduction to computer science, with particular emphasis on software and on machines from a programmer’s point of view.

  1. CS 61A concentrates on the idea of abstraction, allowing the programmer to think in terms appropriate to the problem rather than in low-level operations dictated by the computer hardware.
  2. CS 61B deals with the more advanced engineering aspects of software, such as constructing and analyzing large programs.
  3. CS 61C focuses on machines and how they execute programs.

In CS 61A, we are interested in teaching you about programming, not about how to use one particular programming language. We consider a series of techniques for controlling program complexity, such as functional programming, data abstraction, and object-oriented programming.

CS 61A primarily uses the Python 3 programming language. Python is a popular language in both industry and academia. It is also particularly well-suited to the task of exploring the topics taught in this course. It is an open-source language developed by a large volunteer community that prides itself on the diversity of its contributors. We will also dive deeper into interpreters, to which end we’ll introduce the Scheme programming language as a way to explore functional programming, and Regular Expressoins and the SQL programming language as a way to explore declarative programming.

Mastery of a particular programming language is a very useful side effect of CS 61A. However, our goal is not to dictate what language you use in your future endeavors. Instead, our hope is that once you have learned the concepts involved in programming, you will find that picking up a new programming language is but a few days’ work.

Contents

Homeworks

Labs

Projects