My Creation Anniversary (Little Unicorn)

Insert image description here

opportunity

Hello everyone, hello everyone, I am little unicorn , today is a special day (My creative anniversary), on the 128th day ago today, I published my first blog post, the back-shaped matrix .

Today last year, I just came into contact with CSDN. I just wanted to use it as a learning tool. As time went by, I found that this software is really good. I can share the things I like, discuss technology with like-minded people, and also I can share my technology and experience, and hope that in the future,Little UnicornIt will get better and better!

reward

During these 128 days of creation, I also gained a lot, as follows:

  1. Won335fans attention
  2. Won2wThe positive feedback is something I didn't expect.
  3. know and manyLike-mindedpeers in the field
  4. Gained a lottechnicalknowledge
  5. With a clear future developmentTarget

daily

At that time, the editor was learning the basics of programming language (C language). This round matrix question was very interesting, so I recorded it in a blog. It is precisely in this way that blogging has become an indispensable part of my learning journey.

Maybe someone asked, blogging is such a waste of time, I can do other things with that time. Here I would like to share my personal views: I am a college student majoring in computer science. When learning programming languages, I take C language as an example. Although the syntax seems very simple, C language has many details. Just now You may be able to master it at the beginning of learning, but as time goes by, it is unknown whether you can recall it. The editor writes down the important and difficult points in my studies by writing blogs. Even if I forget them after two or three months, as long as I look at the blog posts I wrote before, it can bring back my memories.

Therefore, for the editor, creation has become an indispensable part of my learning journey. Here, you can not only record every bit of yourself , but also your learning experience, your technology display center, and every bit of your daily life. Here, you can learn a lot of technical support and meet like-minded friends.

On the road of creation, the editor will continue to work hard! !

Achievement

During the 128 days of creation, I achieved many achievements. Let me talk about them in detail below:

Tip: What’s the best piece of code you’ve ever written? Please post it in code blocks
. For example:

  1. On day (6) of C language daily practice , it was recognized by the cloud native technology community and included in the community.

Insert image description here
Thank you for your support from your community! This article reviews the related knowledge of integer conversion and XOR
by explaining two programming exercises . The following is part of the code of the article:

int convertInteger(int A, int B)
{
    
    
    //位运算,先异或(相同为0,相异为1)
    //再利用0的二进制进行与运算(遇1为1)
    int c = A ^ B;//两数异或后的值
    int i = 0;//循环控制器
    int count = 0;//计数器
    for(i = 0 ;i < 32 ;i++)
    {
    
    
        if(c & 1 == 1)//利用与1的 按位与 运算,发现一个1,计数器就++
        {
    
    
            count++;
        }
        c >>= 1;// c 变量的二进制位往右移动一位 
    }
    return count;//返回计数器的值
}



If you are interested in this article, you can visit: C language daily practice-----Day(6)

  1. In the technology sharing, the introduction and implementation of the stack won the 42nd place in the field of data structure algorithms.

Insert image description here

  1. Selected by Apollo officials to become a navigator.

Insert image description here
4. I have gained many fans and the number of views has reached 130,000. Thank you all for your support! !

Insert image description here


yearning

In the next year, my blog will focus on C++, Linux and databases . I welcome like-minded friends to correct me and let us learn and make progress together. I hope that more colleagues will work together and meet at the top . !

Guess you like

Origin blog.csdn.net/weixin_72066135/article/details/133206063