摘要:
TLE求错误啊啊啊啊啊啊啊#include #include #include #include #include using namespace std;#define MAXN 50010int ai[MAXN];int N;int T;struct node{ int left; int right; int sum;}Tree[MAXN>1; if(start == end) { Tree[root].sum = ai[start]; return; } Tree[root].left = start; Tre... 阅读全文
摘要:
今天做机房收费系统时,将DataGridView中的数据导入到Excel中,当运行到这一句代码”xlApp.Cells(rows + 2, j + 1) = DataGridView1(j, rows).Value.ToString “时,出现了”未将对象引用设置到对象的实例“这种情况。后来经过调试发现是将DataGridView中的空行导入到Excel中,也就是循环到DataGridView中的单元格时此单元格却没有赋值的问题。引起这种”未将对象引用设置到对象的实例“的根源,归结为一点”对控件赋文本值时,值不存在。我对“未将对象引用设置到对象的实例”这种现象,经过查阅资料做了一下总结... 阅读全文
摘要:
Problem A - No TippingAs Archimedes famously observed, if you put an object on a lever arm, it will exert a twisting force around the lever's fulcrum. This twisting is called torque and is equal to the object's weight multiplied by its distance from the fulcrum (the angle of the lever also c 阅读全文
摘要:
题意:n个点m条边,每个点有权值,每条边也有权值,权值的范围是 |w| >对于边权,把这条边分成两半,各加到其中的一个点权上。如果一个人取到了一条边上的两点,权和就是两点的权加上这条边的权了;如果两个人各取了边的一点,最后相减的时候就抵消了,好巧妙的题目~^_^~#include #include using namespace std;const int maxn = 100000 + 10;double d[maxn];int main(){ int n, m, u, v, i; double w; while(scanf("%d%d", &n, & 阅读全文
摘要:
Java内存管理小技巧:尽量使用直接量当需要使用字符串,还有Byte,Short,Integer,Long,Float,Double,Boolean,Character包装类的实例时,程序不应该采用new的方式来创建对象,而应该直接采用直接量来创建它们。String str=”hello”; 这种方法会创建一个”hello”字符串,而且JVM的字符串缓存池还会缓存这个字符串。String str =new String(“hello”);创建了一个缓存在字符串缓存池中的”help”字符串。除此之外str所引用的String对象底层还包含一个char[]数组,这个char[]数组里依次存放了h, 阅读全文
摘要:
原文地址:HTML5′s placeholder Attribute演示地址:placeholder演示 原文日期: 2010年08月09日 翻译日期: 2013年8月6日 浏览器引入了许多的HTML5 特性: 有些是基于HTML的,有些是JavaScript APIs形式的,但都很有用。其中我最喜欢的一个就是为input元素引入了placeholder属性。 placeholder属性显示引导性文字直到输入框获取输入焦点,当有了用户输入内容后引导性内容将会自动隐藏。你肯定见过用JavaScript实现的这种技术成千上万次了,但是来自HTML5的原生支持一般来说会更好一些。 HTML 代码 如 阅读全文
摘要:
Spell checkerTime Limit: 2000MSMemory Limit: 65536KTotal Submissions: 16675Accepted: 6087Description You, as a member of a development team for a new spell checking program, are to write a module that will check the correctness of given words using a known dictionary of all correct words in all thei 阅读全文
摘要:
自从个人版机房收费系统完成之后,因为马上要期末考试,而且当时也没找足合作的伙伴,所以就一直将合作的事给搁置了,直到暑假,才重新组队,进行开发,现在我就说说自找米老师到现在,在这个合作中我所经历的,我所想到的,我所遇到的问题,我们的解决方式。 那天上午去找老师的时候,老师看了我三个人,然后指了指我,让我当项目组长,两男一女,这时就是女生应该锻炼的时候了,当时感觉说不上来,有一点诧异,有一点兴奋,但又觉得一切都很平常,我也不知道为什么会是这样的感觉。。。 问题一:第一次合作,无从下手老师指点迷津:去找师傅我的做法:大致将合作过程中要做的事情,要商讨的问题,要注意的事情,一一在纸上列出来... 阅读全文
摘要:
1、map 代码如下:/* * map_1.cpp * * Created on: 2013年8月6日 * Author: Administrator */#include #include using namespace std;template void print(T b , T e,char c = ' '){ while(b!= e){ coutostream& operator& p){ return o mis; mis.insert(map::value_type(5,"刘诗诗")); mis.insert(pair(8,&q 阅读全文
摘要:
1 // 当前时间创建NSDate NSDate *myDate = [NSDate date]; NSLog(@"myDate = %@",myDate);2 //从现在开始的24小时 NSTimeInterval secondsPerDay = 24*60*60; NSDate *tomorrow = [NSDate dateWithTimeIntervalSinceNow:secondsPerDay]; NSLog(@"myDate = %@",tomorrow);3//根据已有日期创建日期 NSTim... 阅读全文