User Tools

Site Tools


blog:fall2015:mmalik1:intro

This is an old revision of the document!


Introduction

My name is Mohsin Malik. I am currently in my 3rd semester at CCC out of (hopefully) 4 semesters. I am pursuing Computer Science as my major.

I mainly program in Java but have also ventured into C/C++ and some web development. I also play around with Linux in any free time I have.

Computer is my number one hobby. My number two hobby is following soccer. I enjoy playing the sport as well as following the major leagues around the world, as well as international fixtures.

That's basically all there is.

HPC Experience

September 1, 2015

On the first day of HPC, all we did was organize the tables we had in the room into a more “lair” like feel. We moved the tables into their own pods. That's basically all we did.

On the second day of HPC, we still didn't have the computers due to an error when ordering them. So, all we did was set up the monitors on all the pods.

On the third day of HPC, the computers finally came! We set everything up. The goal for that day was to have a fully functional lair. I believe we were able to successfully set every pod up except for one (which was set up the next day).

That's essentially all we have done so far.

Data Structures

September 1, 2015

We talked about what data structures is all about. Essentially, it is about writing code which is efficient and doesn't eat up resources. In previous programming courses, we are taught how to program, but not how to program effectively and efficiently.

We learned about something called a LinkedList. It is basically an array except each element is in a random location in memory (instead of being lined up, like in an array). Matt showed us an example of this using a struct called node. Node contained two variables, a signed short int called value and a struct node pointer called next. Basically, each instance of struct node is an element in a LinkedList. Each element of this struct node will then point to the next instance in the LinkedList.

Our first project for this course is to create a program which will simulate a LinkedList except using an array (for now). The purpose of this project is so that we can get a refresher of C and so that we can start leading into data structures.

blog/fall2015/mmalik1/intro.1441117813.txt.gz · Last modified: 2015/09/01 14:30 by mmalik1