上一页 1 2 3 4 5 6 7 8 ··· 88 下一页
摘要: https://www.cnblogs.com/xunux/p/4882761.html 阅读全文
posted @ 2020-05-18 16:25 那些年的代码 阅读(336) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/monengji/p/11058242.html https://blog.csdn.net/z_atmosphere/article/details/82625058 阅读全文
posted @ 2020-05-18 16:19 那些年的代码 阅读(160) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/KingIceMou/p/8075343.html 阅读全文
posted @ 2020-05-18 10:43 那些年的代码 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 昨天面试官面试的时候问了我一道关于链表的问题:情境如下 面试官:请说一下链表跟数组的区别? 我:数组静态分配内存,链表动态分配内存;数组在内存中连续,链表不连续;数组利用下标定位,时间复杂度为O(1),链表定位元素时间复杂度O(n);数组插入或删除元素的时间复杂度O(n),链表的时间复杂度O(1)。 阅读全文
posted @ 2020-05-16 15:11 那些年的代码 阅读(398) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zjh_746140129/article/details/80904876#comments https://blog.csdn.net/MenofGod/article/details/81941223 https://blog.csdn.net/zj 阅读全文
posted @ 2020-05-16 11:16 那些年的代码 阅读(419) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/rengee202/article/details/80894872?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonecas 阅读全文
posted @ 2020-05-16 10:14 那些年的代码 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 直接 sudo chmod 777 /zhuproject/operation/ 阅读全文
posted @ 2020-05-15 14:32 那些年的代码 阅读(696) 评论(0) 推荐(0) 编辑
摘要: shell脚本从windows传到linux主机执行,主要原因是因为shell的文件格式是windows的,需要改成UNIX格式的;或者在linux系统中用dos2unix进行转换;使用notepad++将文档转成UNIX格式的: 编辑 -> 档案格式转换 -> 下面有3种 另外,设置 -> 首选项 阅读全文
posted @ 2020-05-15 14:31 那些年的代码 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 有时你提交过代码之后,发现一个地方改错了,你下次提交时不想保留上一次的记录;或者你上一次的commit message的描述有误,这时候你可以使用接下来的这个命令:git commit --amend。 git功能十分强大,接下来我将讲解一下git commit --amend命令的用法~ git 阅读全文
posted @ 2020-05-14 14:59 那些年的代码 阅读(28030) 评论(2) 推荐(2) 编辑
摘要: 我用到的数据库是mysql8环境是centos7 ​ 关闭mysql服务 service mysqld stop 修改mysql为免密码登陆 vi /etc/my.cof在最下面加上skip-grant-tables 启动mysql服务,并登陆 service mysqld startmysql - 阅读全文
posted @ 2020-05-13 16:59 那些年的代码 阅读(7808) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 88 下一页