上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 27 下一页
摘要: 14、提取并显示文件包含的图标 [System.Runtime.InteropServices.DllImport("shell32.dll")] privatestaticexternintExtractIconEx(stringlpszFile,intnIconIndex,refIntPtrphiconLarge,... 阅读全文
posted @ 2010-12-13 22:24 BuildNewApp 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 10、图像的特效显示 [System.Runtime.InteropServices.DllImport("user32")] privatestaticexternIntPtrGetDC(IntPtrhwnd); [System.Runtime.InteropServices.DllImport("gdi... 阅读全文
posted @ 2010-12-13 15:57 BuildNewApp 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 7、设置字形窗口 [System.Runtime.InteropServices.DllImport("gdi32")] privatestaticexternIntPtrCreateFont(intH,intW,intE,intO,intFW,intI,intu,int S,intC,intOP,intCP,intQ,int... 阅读全文
posted @ 2010-12-13 15:46 BuildNewApp 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 1、渐显的窗体 放一个定时器Interval 设置为100 , 在响应的函数中添加 private void Form1_Load(object sender, System.EventArgs e) { this.timer1.Enabled=true; this.Opacity=0; } private void timer1_Tick(object sender, System.EventArgs e) { if(this.Opacity<1) ... 阅读全文
posted @ 2010-12-13 15:34 BuildNewApp 阅读(712) 评论(0) 推荐(0) 编辑
摘要: 【原文见: http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=dynProg】 Dynamic programming (简称DP)可以用来解决一类很重要的问题。解决这类问题将会极大的提高你的能力。我将试着帮助您了解如何使用DP来解决问题。这篇文章以例子作为基础,因为空谈理论不太容易理解。 注意: 如果您不太想阅读某节或者已经知道了所要讨论的话题-略过它去读下面的部分。Introduction (Beginner)什么是动态规划,它怎样描述?动态规划作为一种算法技巧,通常基于一个递推方程和一个(或者多个)初始状态。 阅读全文
posted @ 2010-12-09 22:46 BuildNewApp 阅读(575) 评论(0) 推荐(1) 编辑
摘要: 筛选法应用!先来最基本的线性筛素数,以后的算法其实都是基于这个最基本的算法:1#include<stdio.h>2#include<string.h>3#defineM100000004intprime[M/3];5boolflag[M];6voidget_prime()7{8inti,j,k;9memset(flag,false,sizeof(flag));10k=0;11for(i=2;i<M;i++){12if(!flag[i])13 prime[k++]=i;14for(j=0;j<k&&i*prime[j]<M;j++){15 阅读全文
posted @ 2010-12-08 21:28 BuildNewApp 阅读(660) 评论(0) 推荐(0) 编辑
摘要: Problem DescriptionA number whose only prime factors are 2,3,5 or 7 is called a humble number. The sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 18, 20, 21, 24, 25, 27, ... shows the first 20 humble numbers.Write a program to find and print the nth element in this sequenceInputThe input co 阅读全文
posted @ 2010-12-08 12:13 BuildNewApp 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 以前AC过的,现在复习是忘了,从网上找了个比较好的解题报告,备用!Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 3672Accepted Submission(s): 1124Problem Description搬寝室是很累的,xhd深有体会.时间追述2006年7月9号,那天xhd迫于无奈要从27号楼搬到3号楼,因为10号要封楼了.看着寝室里的n件物品,xhd开始发呆,因为n是一个小于2000的整数,实在是太多了,于是xhd决定随便搬2*k 阅读全文
posted @ 2010-12-07 21:14 BuildNewApp 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 本来想把用C#写的程序重写移植到win32平台的,但是感觉重写好累,而且不是很熟练,就想着能不能在未安装.net的机器上运行,有需就有求,嘎嘎,百度了一会,已经有各位老大们已经在讨论用飞信的虚拟机平台来进行加载运行.net程序了,于是自己就想着去尝试着去做一下。(PS:飞信的就是在.net平台上开发的,不同的是飞信做了一个.net虚拟机的平台,这样就能在非安装.net的机器上运行了)开始动手^_^由于启动文件要在win32上运行,所以就用了VC++6来进行写程序了,使用该启动程序来进行启动外部程序(我们的.net程序)代码如下// 文本隔行加亮2.cpp : Defines the entry 阅读全文
posted @ 2010-12-06 22:08 BuildNewApp 阅读(1288) 评论(0) 推荐(0) 编辑
摘要: 已经知道原表year salary------------------ ---------------------2000 10002001 20002002 30002003 4000显示查询结果year salary------------------ ---------------------2000 10002001 30002002 60002003 10000即salary为以前年的工资的和; 我这里提供的答案有两种第一种:select b.year,sum(a.salary) from salary a,salary b where a.year<=b.year group 阅读全文
posted @ 2010-12-06 21:58 BuildNewApp 阅读(330) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 27 下一页