Array
Array has fixed size and contiguous memory. New elements cannot be appended. You can use memory address to access elements of Array.
char a[5] = {'h', 'e', 'l', 'l', 'o',}; |
a[0] = 'b'; |
result:
bello |
Array has fixed size and contiguous memory. New elements cannot be appended. You can use memory address to access elements of Array.
char a[5] = {'h', 'e', 'l', 'l', 'o',}; |
a[0] = 'b'; |
result:
bello |
Now we implement a singly linked list with C++.
Linked list is a Data structure that contains a variable and a pointer pointing to the next node.
Qt 经常被当做一个 GUI 库,用来开发图形界面应用程序,但这并不是 Qt 的全部;Qt 除了可以绘制漂亮的界面(包括控件、布局、交互),还包含很多其它功能,比如多线程、访问数据库、图像处理、音频视频处理、网络通信、文件操作等。
互联网时代信息爆炸,干净的工作环境成为必需品,想坐在桌前静心做事情,却恰恰因为坐在了桌前,心中浮躁万分。电脑中的纷杂信息顷刻占满注意力,根本无暇思考哪怕一丝坐下来前想要思考的东西。一个博客并不能解决这个问题,但作为一个干净的出口,它能让正在做事情的我不至分散心神。
📚 使用Linux时遇到的一些问题和解决方法
🏰常用镜像地址汇总。
✅ This is a tutorial of installing on WSL2
运行在浏览器上的远程桌面。