分享一个做事情分类任务表,想要做事高效、充实的人进来..........
分类:
其他好文 时间:
2015-08-10 20:11:21
阅读次数:
197
以MS OFFICE WORD 2010为例。
1、WORD 目录连接线(标准称呼:前导符)为什么有的稀,有的密?
答案:目录格式字体不同。
2、首页、目录页、正文有的要页眉,有的不要,首页不要页码,其他页要页码,怎么设置?
答案:(1)不同的页眉、页脚。实现方式为在页尾插入分隔符(菜单:页面布局),选择分节符栏----下一页,插入分节符,并在下一页上开始新节。
说白了,就是将首页,...
分类:
其他好文 时间:
2015-08-10 20:11:32
阅读次数:
210
最近要做个游戏场景编辑器,需要directx11配合gui框架使用,所以简单地弄了一个directx11嵌入到Qt窗体中的程序。
1 建立工程
建一个Qt的工程,配置好directx的包含目录和库目录(以及附加依赖项),Qt vs2013 add-in的话很方便,直接在vs2013里面加,Qt creator的话写到pro文件里,可以选择生成对应的ui文件,或者不生成。
2...
分类:
其他好文 时间:
2015-08-10 20:09:10
阅读次数:
539
计算直线的交点数
题目不是很难,根据点的产生过程,很容易知道,对于n条直线,其产生的交点数在[0,(n-1)n/2]中。其中,当所有的直线都平行时,交点为0;当所有的直线两两相交时,产生的交点数是(n-1)n/2,很容易证明,假设n条直线的两两相交时产生的交点数为s(n),容易得到递推关系式,s(n)=s(n-1)+n-1,即已知n-1条直线两两相交产生的交点数时,第n条直线会与剩下的n-1条直...
分类:
其他好文 时间:
2015-08-10 20:08:02
阅读次数:
122
//===========================================
//segment tree
//final version
//by kevin_samuel(fenice)苏州大学孙俊彦
#include
#include
#include
using namespace std;
#define MAXN 100
#define INF 0x3ffff...
分类:
其他好文 时间:
2015-08-10 20:10:50
阅读次数:
92
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space for another array, you must do this in place with cons...
分类:
其他好文 时间:
2015-08-10 20:07:49
阅读次数:
141
Prime Ring Problem
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 34347 Accepted Submission(s): 15188
Problem Description
A ring is compo...
分类:
其他好文 时间:
2015-08-10 20:08:35
阅读次数:
148
Constructing Roads
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 20889
Accepted: 8817
Description
There are N villages, which are numbered from 1 to N,...
分类:
其他好文 时间:
2015-08-10 20:06:35
阅读次数:
108
D1T1 程序自动分析
题目大意:给定10910^9个变量和nn个等于/不等于的关系,判断能否存在一组解满足所有关系并查集傻逼题,NOIP小孩都会做
离散化一下,然后把相等的都用并查集并起来,判断每对不等关系是不是在同一并查集中就行了代码没拷回来,懒得再写一遍了D2T2 软件包管理器
题目大意:给定一棵有根树,每个点有黑白两种颜色,初始都为白色,每次进行以下两种操作:
1.将某个点所在的子树...
分类:
其他好文 时间:
2015-08-10 20:07:56
阅读次数:
182
VS2008不能全文搜索的解决办法
VS2008用着用着就不能用了,一全文搜索就提示
No files were found to look in.
Find was stopped in progress.
网上查的,都是说用ctrl + scroll, 我试过不好用。
后来同事说有系列快捷键,依次试了一下。果然好用了。具体是哪个用的,也不知道,反正到Alt+Break...
分类:
其他好文 时间:
2015-08-10 20:08:03
阅读次数:
287
选课时间(题目已修改,注意读题)
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3443 Accepted Submission(s): 2713
Problem Description
又到了选课的时间了...
分类:
其他好文 时间:
2015-08-10 20:07:25
阅读次数:
212
atitit. 分销系统规划p8k
1. 商户平台管理 overview2
1.1. 分销业务管理2
1.2. 文案管理2
1.3. 订单管理3
1.4. 统计报表3
1.5. 财务结算3
1.6. 自身信息管理4
2. 商户后台详细5
3. 推广人后台6
3.1. 产品及文案6
3.2. 订单与结算6
3.3. 下线邀请与奖励6
3.4. 订单统计6
3....
分类:
其他好文 时间:
2015-08-10 20:07:42
阅读次数:
147
#include
#define N 100
int aa[N];
int main()
{
int a,b,i;
while(scanf("%d",&a)&&a){
b=0;
for(i=0;i<a;i++)
scanf("%d",&aa[i]);
b+=5+6*aa[0];
f...
分类:
其他好文 时间:
2015-08-10 20:07:48
阅读次数:
99
思路:
第一步,建立一个activity,用来管理fragment。
第二步‘获取fragmentManger 和fragmentTraction.
private FragmentManager fm;
private FragmentTransaction ft;
fm = getFragmentManager();
ft = fm.beginTransaction();
...
分类:
其他好文 时间:
2015-08-10 20:07:49
阅读次数:
150
题意:告诉n个点和m条边,求s到t的最短路径。。
思路:N和M都比较大了,n有20000,m有50000,用邻接表加SPFA。
#include
#include
#include
#include
#include
#include
#include
#define INF 99999999
using namespace std;
int n,m,s,t;
int dis[2...
分类:
其他好文 时间:
2015-08-10 20:06:17
阅读次数:
130
Alice and Bob love playing one-dimensional battle ships. They play on the field in the form of a line consisting of n square cells
(that is, on a 1?×?n table).
At the beginning of the game Alice ...
分类:
其他好文 时间:
2015-08-10 20:05:45
阅读次数:
148
题目Given a linked list, swap every two adjacent nodes and return its head.For example,
Given 1->2->3->4, you should return the list as 2->1->4->3.Your algorithm should use only constant space. You may...
分类:
其他好文 时间:
2015-08-10 20:06:13
阅读次数:
117