会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
hemeiwolong
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
4
5
6
7
8
9
10
11
12
···
20
下一页
2020年1月12日
查看并下载MySQL对应jar包
摘要: 打开已经安装的mysql文件位置 2.查看对应connector版本并下载jar包 3.下载对应jar包:http://central.maven.org/maven2/mysql/mysql-connector-java/
阅读全文
posted @ 2020-01-12 16:05 hemeiwolong
阅读(1819)
评论(0)
推荐(0)
2019年6月23日
Android如何运行他人工程
摘要: 首先新建一个本地的新工程做对比,用记事本打开以下的几个工程文件,把本地工程文件的内容覆盖掉他人工程的文件内容,注意只覆盖两个工程共有的内容条目即可,不要删掉他人工程的其他依赖!(具体哪几个文件本人还没摸清楚,只是把能覆盖的更改全部都做了。。) 覆盖后,最好先关掉网络(以防AS打开目标工程时自动下载依
阅读全文
posted @ 2019-06-23 00:45 hemeiwolong
阅读(1654)
评论(0)
推荐(0)
2019年6月17日
Linux编程日常错误
摘要: undefined reference to `sem_init'undefined reference to `sem_post'undefined reference to `sem_wait' 编译选项需要加入一个多线程: gcc -pthread -o outfile.out filenam
阅读全文
posted @ 2019-06-17 23:54 hemeiwolong
阅读(276)
评论(0)
推荐(0)
2019年6月13日
分别用shell编程和c编程实现文件和目录的复制
摘要: c编程参考:https://blog.csdn.net/maizi_hsx/article/details/78645698 makefile文件: 运行: shell编程:shell.sh文件 运行: 结果:
阅读全文
posted @ 2019-06-13 11:08 hemeiwolong
阅读(510)
评论(0)
推荐(0)
2019年6月11日
Android日常debug
摘要: 获取SD卡文件 File file=new File(Environment.getExternalStorageDirectory().toString()+"/Music", "music.mp3"); mediaPlayer.setDataSource(file.getPath()); 报错:
阅读全文
posted @ 2019-06-11 19:28 hemeiwolong
阅读(200)
评论(0)
推荐(0)
2019年5月23日
编译原理——词法分析器实现
摘要: 参考:https://www.cnblogs.com/zyrblog/p/6885922.html 单词符号 类别码 助记符 说明 BEGIN 1 BEGIN 保留字 DO 2 DO 保留字 ELSE 3 ELSE 保留字 END 4 END 保留字 IF 5 IF 保留字 INTEGER 6 IN
阅读全文
posted @ 2019-05-23 14:41 hemeiwolong
阅读(357)
评论(0)
推荐(0)
2019年5月16日
c++整行读入文本
摘要: 参考:https://blog.csdn.net/syb198810/article/details/80753628?utm_source=blogxgwz4
阅读全文
posted @ 2019-05-16 16:53 hemeiwolong
阅读(188)
评论(0)
推荐(0)
2019年4月17日
PAT-A 1009. Product of Polynomials
摘要: 参考:https://www.jianshu.com/p/e7a3ee0f82d9 1 #include<bits/stdc++.h> 2 using namespace std; 3 const int N=1e6+5; 4 double xi[N]; 5 struct node 6 { 7 in
阅读全文
posted @ 2019-04-17 13:28 hemeiwolong
阅读(106)
评论(0)
推荐(0)
2019年4月11日
PAT甲级 1004.Counting Leaves
摘要: 参考:https://blog.csdn.net/qq278672818/article/details/54915636 首先贴上我一开始的部分正确代码: 1 #include<bits/stdc++.h> 2 using namespace std; 3 const int N=1e4+5; 4
阅读全文
posted @ 2019-04-11 22:39 hemeiwolong
阅读(186)
评论(0)
推荐(0)
2019年4月2日
PAT (Advanced Level) Practice 1003 Emergency
摘要: 思路:用深搜遍历出所有可达路径,每找到一条新路径时,对最大救援人数和最短路径数进行更新。 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 using namespace std; 5 const int N=600; 6 i
阅读全文
posted @ 2019-04-02 00:41 hemeiwolong
阅读(147)
评论(0)
推荐(0)
上一页
1
···
4
5
6
7
8
9
10
11
12
···
20
下一页
公告