Loading

上一页 1 ··· 58 59 60 61 62 63 64 65 66 ··· 75 下一页
摘要: 1、下载一个老版本火狐浏览器: 历史版本下载 2、下载安装完成后,立即在火狐浏览器的选项设置里面把自动更新关闭 3、手动安装firebug:最后搜到可以下载成功的地址:http://www.onlinedown.net/soft/82618.htm,下载把xpi压缩包文件拖到扩展,提示不给安装, 度 阅读全文
posted @ 2019-07-19 12:01 拾月凄辰 阅读(699) 评论(0) 推荐(0)
摘要: 将Path环境变量中的JAVA_HOME变量中写入现在的JDK1.7路径即可。 阅读全文
posted @ 2019-07-14 13:30 拾月凄辰 阅读(261) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/u011622021/article/details/81162083 阅读全文
posted @ 2019-07-08 20:46 拾月凄辰 阅读(262) 评论(0) 推荐(0)
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 9 using namespace std; 10 11 int Tree[101]; 12 13 int findRoot(int x) // 查找节点x所在树的根节点 14 { 15 ... 阅读全文
posted @ 2019-07-05 19:32 拾月凄辰 阅读(342) 评论(0) 推荐(0)
摘要: 为什么只遍历到sqrt(n)就够了? 反证法:假设只遍历2~sqrt(n)不能把所有非素数置为false,即遍历完了2~sqrt(n)后,在sqrt(n)~n范围内仍有一个非素数k,但isprime[k]=true。证: k在sqrt(k)之前一定有一个素数因子(任何非素数都可以拆成素数的乘积,所以 阅读全文
posted @ 2019-07-03 11:54 拾月凄辰 阅读(149) 评论(0) 推荐(0)
摘要: 思路: 求第一个和第二个元素的最小公倍数,然后拿求得的最小公倍数和第三个元素求最小公倍数,继续下去,直到没有元素 注意:通过最大公约数求最小公倍数的时候,先除再乘,避免溢出 1 #include <iostream> 2 #include <cmath> 3 #include <cstdio> 4 阅读全文
posted @ 2019-07-03 10:27 拾月凄辰 阅读(373) 评论(0) 推荐(0)
摘要: 参考: https://blog.csdn.net/shuangde800/article/details/7828675 https://www.cnblogs.com/haoabcd2010/p/6171794.html?utm_source=itdadao&utm_medium=referra 阅读全文
posted @ 2019-07-02 14:33 拾月凄辰 阅读(156) 评论(0) 推荐(0)
摘要: 题目大意:先确定一个M, 然后输入多组线段的左端和右端的端点坐标,然后让你求出来在所给的线段中能够 把[0, M] 区域完全覆盖完的最少需要的线段数,并输出这些线段的左右端点坐标。 思路分析: 线段区间的起点是0,那么找出所有区间起点小于0中的最合适的区间。 因为需要尽量少的区间,所以选择右端点更大 阅读全文
posted @ 2019-07-02 13:31 拾月凄辰 阅读(365) 评论(0) 推荐(0)
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 7 8 using namespace std; 9 10 struct node 11 { 12 int start; // 开始时间 13 int end; // 结束时间 14 }a[101]; 15... 阅读全文
posted @ 2019-07-01 11:10 拾月凄辰 阅读(132) 评论(0) 推荐(0)
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 7 8 using namespace std; 9 10 struct node 11 { 12 double J; // JavaBean 13 double F; // Food 1... 阅读全文
posted @ 2019-07-01 09:47 拾月凄辰 阅读(203) 评论(0) 推荐(0)
上一页 1 ··· 58 59 60 61 62 63 64 65 66 ··· 75 下一页