Hello World!--Skyline's first blog

Hello World!--Skyline's first blog

In fact, I am already old friends with CSDN, but after reading so many other people's blogs, I finally started to write my first blog.

#include <stdio.h>
int main()
{
    
    
   printf("hello world---from Skyline\n");
   return 0;
}

Part1 Self-introduction:
I am a freshman from Nanjing University, and I started to learn programming only because of the need to transfer majors. Thanks to the school's platform, I learned sicp (computer program construction and interpretation), and my interest in computer languages ​​gradually increased. Of course, the abstract requirements of this course make me need to continue to explore and research. Of course, sicp is just a freshman entrance course. The course teacher will mention a lot of professional terms, so that we will continue to understand in the future study. This is the driving force that motivates me to move forward.

Part2 Goal:
1. First learn the c language. c beget everything. (A grand dream, to write a python interpreter (I used python to write a scheme interpreter in the sicp class, maybe it can be successful))
2. Persist in daily code practice, in the C language course of this semester, for arrays , The pointer is very weak (python library spoiled yourself)
3. A deeper understanding of data structure, the most frightening thing in the sicp course is "tree"
4. Proficiency in recursion (a short-term goal, Abstraction is really frightening)
5. In the learning process, understand some nouns tail recursion, Mixin, Polymorphism... I hope I can make up what I did not understand this semester

Part 3 Time investment in learning programming:
more than 15 hours a week, and more than 1.5 hours of writing code every day.

Part4 How to learn to program:
The learning process of this semester is full of ups and downs. (x The
ups and downs of the experience tells me that code is definitely not for OJ. I often program for Oj and constantly optimize it to make the code more concise and beautiful, which is king.

Part 5 Fields that I hope to enter:
I am actually very confused in this area, I still hope that I will be down to earth. I prefer to enter the field of artificial intelligence or big data.

Learn endlessly like num, keep next()

def num():
    x=0
    while True:
         yield x
         x +=1

Borrow the words of the teacher at the end of the sicp course to motivate yourself.
Motivate yourself by borrowing the words from the teacher at the end of the sicp course

Guess you like

Origin blog.csdn.net/weixin_54225634/article/details/112465473