傻蛋丸子
傻蛋丸子
全部文章
CS基础知识
AI相关(5)
Linux服务器开发(8)
WEB(37)
工具&命令(36)
算法题(31)
读书记录(6)
归档
标签
去牛客网
登录
/
注册
code better
记录一些技术文章,定期做好整理。
全部文章
/ CS基础知识
(共27篇)
数字电路基础
组合逻辑电路和时序逻辑电路
2020-09-06
0
627
网络是怎样连接的(1)
在浏览器的搜索栏中输入www.baidu.com 浏览器也是一个应用程序,将URL看作https://www.baidu.com/index.html 根据HTTP协议生成HTTP请求(一种文本形式而不是二进制形式) HTTP请求中包含:URI(对什么)和方法(做什么) URL如上的情况,URI就是...
2020-09-01
0
507
简单C与汇编
C Swap #include<stdio.h> #include<stdlib.h> void swap(long *a,long *b) { long temp=*a; *a=*b; *b=temp; } int main(int argc,cha...
2020-08-09
0
415
datalab
/* * CS:APP Data Lab * * <Please put your name and userid here> * * bits.c - Source file with your solutions to the Lab. * Th...
2020-08-09
0
596
csapp-Lecture1-4
#include "stdio.h" #include "stdlib.h" int main(){ //写入一个整数16 //32位的int表示为:00000000 00000000 00000000 00010000 //用uns...
2020-08-08
0
459
手动写入int和float
#include "stdio.h" #include "stdlib.h" int main(){ //写入一个整数16 //32位的int表示为:00000000 00000000 00000000 00010000 //用uns...
2020-08-08
0
514
unsigned char*
https://blog.csdn.net/guotianqing/article/details/77341657
2020-08-08
0
434
首页
上一页
1
2
3
下一页
末页