1.xaml
xmlns:local="clr-namespace:YaoMinSys.Class" ...
分类:
其他好文 时间:
2014-04-30 00:02:06
阅读次数:
376
// 题意: // 输入两个整数N, H,按照字典序输出所有长度为N,恰好包含H个1的01串
// 规模:1#include#include#include#includeusing namespace std;int n,h;int
buf[16];void solve(int c0, int c...
分类:
其他好文 时间:
2014-04-29 23:19:55
阅读次数:
416
这里仅仅是以putty作为演示消息发送机制和控件搜索机制,不完善,待更新#include"stdafx.h"#include #include using
namespace std;HWND FindTextBox(HWND hWnd,DWORD select_edit=1){ HWND hEdi...
分类:
其他好文 时间:
2014-04-29 22:20:23
阅读次数:
587
求由所有的点组成的三角形中周长最小的三角形的周长1.将所有的点按横坐标大小排序2.从第一个点开始往后枚举,判断能否组成三角形,判断当前三角形周长是否小于已经得到的最小周长代码如下:#include#include#include#includeusing
namespace std;const do...
分类:
其他好文 时间:
2014-04-29 21:14:42
阅读次数:
504
题意:求N!中末尾0的个数 其实就是5的个数 因为2*5=10
肯定n中2的个数比5的个数多#includeusing namespace std;int main(){ int n; int t,d; int sum;
scanf("%d",&t); while(t...
分类:
其他好文 时间:
2014-04-29 21:09:41
阅读次数:
346
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Threading.Tasks;namespace 计算字符{ class
Program { ...
分类:
其他好文 时间:
2014-04-29 20:45:02
阅读次数:
446
典型的快速幂成应用题意:求x 使得x^e%n=num#includeusing namespace
std;bool funtion(int x,int e,int n,int num){// m^n % k int b = 1; while (e >
0) { i...
分类:
其他好文 时间:
2014-04-29 20:20:25
阅读次数:
414
没说的 暴力打表#include#includeusing namespace std;int
a[62768];int b[42768];int prime[42768];int main(){ int n=0,j,i;
memset(b,0,sizeof(b)); memset...
分类:
其他好文 时间:
2014-04-29 18:24:19
阅读次数:
435
利用减治法实现8枚硬币问题:参考资料:http://blog.csdn.net/wwj_748/article/details/8863503
算法设计--八枚硬币问题 1 #include "stdafx.h" 2 #include 3 #include 4 using namespace ...
分类:
其他好文 时间:
2014-04-29 18:18:17
阅读次数:
510
以订票为例简单应用wcf程序,需要的朋友可以参考下WCF实例(带步骤)复制代码代码如下:本篇转自百度文档,自己试过,确实可以用。以订票为例简单应用wcf新建一个wcf服务应用程序在IService1.cs定义服务契约复制代码代码如下:namespace
WcfDemo{// 注意: 如果更改此处的接...
分类:
其他好文 时间:
2014-04-28 12:04:09
阅读次数:
487