我用ssh连上了ubuntu虚拟机, 尝试xclip命令时, 输入ls | xclip -sel c, 得到报错: Error: Can't open display: (null). 搜索后, 发现好像和X11和DISPLAY有关. 还说ssh应该打开-X选项. 可用ssh -X连接, 还是不行. ...
分类:
其他好文 时间:
2021-06-02 17:07:02
阅读次数:
0
三元环问题 解题思路: 度 = 入度 + 出度 根据 1、度小的连向度大的 2、若度相同,则编号小的连向编号大的 把所有的边建立成有向边(防止后面重复的统计三元环) 然后for循环遍历所有的边 判断所有的边的两端点,判断两个端点有没有连接,如果有连接,那么就ans++。 代码: #include < ...
分类:
其他好文 时间:
2021-06-02 16:59:52
阅读次数:
0
Docker Tutorial Basic Docker Commands pull an image docker pull {image name}:{image version} list all docker images docker image ls -a create and run ...
分类:
其他好文 时间:
2021-06-02 15:27:12
阅读次数:
0
文章推荐: https://www.anquanke.com/post/id/98096 https://www.cnblogs.com/-qing-/p/10623583.html 推荐平台: http://www.dnslog.cn //不需要登录账户注册 速度快一点 简单测试推荐 http:/ ...
分类:
其他好文 时间:
2021-06-02 15:23:17
阅读次数:
0
An exception was thrown while activating Castle.Proxies.ProcedureAppServiceProxy.Autofac.Core.DependencyResolutionException: An exception was thrown w ...
分类:
其他好文 时间:
2021-06-02 14:54:19
阅读次数:
0
原因:mysql不能在同一语句中先select出同一表中的某些值,再对这个表做修改 解决方法:添加临时表 参考:https://blog.csdn.net/baidu456356/article/details/101603359 DELETE FROM Person WHERE Id NOT IN ...
分类:
数据库 时间:
2021-06-02 14:44:55
阅读次数:
0
Index Key Column VS Index Included Column Can someone explain this two - Index Key Column VS Index Included Column? Currently, I have an index that ha ...
分类:
其他好文 时间:
2021-06-02 14:39:23
阅读次数:
0
导入sql文件报错:ORA-01756: quoted string not properly terminated 字符集的中英文问题: 临时解决方法:export NLS_LANG=AMERICAN_AMERICA.ZHS16GBK ...
分类:
其他好文 时间:
2021-06-02 14:06:48
阅读次数:
0
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:
其他好文 时间:
2021-06-02 13:43:42
阅读次数:
0
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:
其他好文 时间:
2021-06-02 13:32:46
阅读次数:
0