PinkCat

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2016年9月9日

摘要: 最近我遇到了一个问题,在使用Word编辑公式时遇到了阻碍。 问题: 我为了顺应潮流呢,用的是office for mac2016版本,在发现MathType安装好后,不能连接到Word里面,从MathType中编辑好的公式再粘贴到word中呢,就变成了图片格式,无法编辑修改。因此呢,为了实现在mac 阅读全文
posted @ 2016-09-09 09:43 人间君 阅读(13329) 评论(0) 推荐(0) 编辑

2016年8月16日

摘要: 随时记录学习过程的感悟,积累总结学习方法,以便于回头看时,不会忘记这些重要的想法。 1、技术问题只用Google。 2、学习算法,中文的教材,什么算法竞赛啊,导论啊,这种公式类书籍并不好,知识并没有从理解的层面讲授。网上刷题只会让你学会这一道例题,然后并不能掌握算法的精髓,核心思想,换一道例题还是不 阅读全文
posted @ 2016-08-16 11:58 人间君 阅读(285) 评论(0) 推荐(0) 编辑

2016年8月12日

摘要: 在TopCoder下载好luncher,网址:https://www.topcoder.com/community/competitive%20programming/ 选择launch web arena 或者选择 launch applet arena(一般选择这个,这个会下载类似于客户端的软件到电脑,苹果和windows都可以),文件是一个.jnlp类型的文件。 然后会提示安装最新的jav... 阅读全文
posted @ 2016-08-12 15:46 人间君 阅读(461) 评论(0) 推荐(0) 编辑

2016年3月30日

摘要: Description In this problem, you have to analyze a particular sorting algorithm. The algorithm processes a sequence of n distinct integers by swapping 阅读全文
posted @ 2016-03-30 19:06 人间君 阅读(219) 评论(0) 推荐(0) 编辑

2016年3月22日

摘要: 对于scanf函数,需求%s类型时,\n是不会影响scanf内容的对于需求%c类型时,\n也是字符,自然会有影响. 阅读全文
posted @ 2016-03-22 16:37 人间君 阅读(432) 评论(0) 推荐(0) 编辑

2015年12月22日

摘要: #include #include int main(){ int n; int i,j; int num[101];while(1){ int sum=0; memset(num,0,sizeof(num)); scanf("%d",&n); if(n==0) { break; } else{ n... 阅读全文
posted @ 2015-12-22 22:39 人间君 阅读(193) 评论(0) 推荐(0) 编辑

摘要: #include #include #include int n=100;int m=100000;double random()//生成0-1之间的随机数{ return (double)rand()/RAND_MAX;}int random2(int m)//生成[0,m-1]之间随机数{ re... 阅读全文
posted @ 2015-12-22 20:44 人间君 阅读(170) 评论(0) 推荐(0) 编辑

2015年12月21日

摘要: ACM小白。。。非常费劲儿的学习中,我觉得目前我能做出来的都可以划分在水题的范围中。。。不断做,不断总结,随时更新POJ:1004 Financial Management求平均值杭电OJ:1001 Sum Problem 相加1002 A + B Problem II 模拟人工加法-精度计算100... 阅读全文
posted @ 2015-12-21 17:16 人间君 阅读(193) 评论(0) 推荐(0) 编辑