傻蛋丸子
傻蛋丸子
全部文章
分类
AI相关(5)
CS基础知识(39)
Linux服务器开发(8)
WEB(37)
工具&命令(36)
算法题(31)
读书记录(6)
归档
标签
去牛客网
登录
/
注册
code better
记录一些技术文章,定期做好整理。
全部文章
(共128篇)
dfs模板
/* * Return true if there is a path from cur to target. */ boolean DFS(Node cur, Node target, Set<Node> visited) { return true if cur is t...
2020-08-31
0
423
取整和整除还是有区别的
2020-08-31
0
378
没事多想想BFS和DFS
BFS和DFS最大的关键在于如何把问题抽象为一个图。 图中的节点和线条,分别对应状态和转换。 另外,一定要注意set的used和visited的使用,要不然很容易超时。
2020-08-31
0
312
Python BFS(参数不冲突)
内置BFS函数没有变量冲突
2020-08-30
0
305
gcc与gdb
https://mp.weixin.qq.com/s?__biz=MzAxODc4OTA0Ng==&mid=2650857696&idx=1&sn=01e00efc9fdd5d53cfa6f02d091893c1&chksm=8024a739b7532e2f0cdc0...
2020-08-09
0
435
简单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
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页