题目: Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation. Note: Example 1: ...
分类:
编程语言 时间:
2017-05-29 22:57:43
阅读次数:
276
【算法】DP 【题解】开long long…… #include<cstdio> #include<algorithm> #include<cstring> using namespace std; const int maxn=50010; int a[maxn],n; int main() { ...
分类:
其他好文 时间:
2017-05-29 22:57:36
阅读次数:
195
任务1:显示如图的树形结构 思考: 1.使用QTreeView显示。 2.Model使用QStandardItemModel,qt的一个标准model。 3.QStandardItemModel下每一个单元都可以看作QStandardItem。 4.QStandardItemModel中invisi ...
分类:
其他好文 时间:
2017-05-29 22:57:24
阅读次数:
308
说明(2017-5-29 22:22:50): 1. 语法:public delegate void mydel();这一句在类外面,命名空间里面。 2. 专门新建一个方法,参数是委托: public static void test(mydel mdl) { mdl(); } 3. 在main函数 ...
run可以隐藏窗体 exec可以获取dos打印输出值 貌似没有即能隐藏窗体又能获取打印结果的办法。 ...
分类:
编程语言 时间:
2017-05-29 22:57:05
阅读次数:
259
1、在对话框的资源视图中插入加速键资源,将要实现的对应功能的控件ID和相关加速键绑定 2、在类视图的对话框类中添加加速键的句柄 HACCEL m_hAccel; 3、在OnInitDialog()中加载加速键资源 m_hAccel=LoadAccelerators(AfxGetInstanceHan ...
分类:
其他好文 时间:
2017-05-29 22:56:59
阅读次数:
178
31 char s[100]; 32 33 int main() { 34 strcpy(s, "123"); 35 cout << atoi(s) << endl; //atol同atoi 36 37 strcpy(s, "12.3"); 38 cout << atof(s) << endl; /... ...
分类:
其他好文 时间:
2017-05-29 22:56:49
阅读次数:
200
hashlib模块 用于加密相关的文件操作,3.X离代替了md5模块和sha模块,主要提供SHA1,SHA224,SHA256,SHA384,SHA512,MD5算法 __always_supported = ('md5', 'sha1', 'sha224', 'sha256', 'sha384', ...
分类:
其他好文 时间:
2017-05-29 22:56:43
阅读次数:
221
1、分类 标签式和向导式 2、相关类 CPropertyPage -属性页,其实就是一个对话框页面,父类是CDialog类 CPropertySheet -属性表单,父类是CWnd类 一个完整的属性页对话框由一个属性表单+多个属性页组成 属性页资源与普通对话框资源的区别: 属性页: 对话框: 3、标 ...
分类:
其他好文 时间:
2017-05-29 22:56:33
阅读次数:
417
原文地址:http://www.jetbrains.com/help/pycharm/creating-and-editing-file-templates.html#d600783e347 标签: pycharm 修改新建文件时的头部模板 默认为__author__=‘...‘ [省略号是默认你的 ...
分类:
其他好文 时间:
2017-05-29 22:56:25
阅读次数:
219
Description An ascending sorted sequence of distinct values is one in which some form of a less-than operator is used to order the elements from small ...
分类:
其他好文 时间:
2017-05-29 22:56:17
阅读次数:
188
masm 的下载,直接在机房拷贝,本打算直接在win10上编译连接好,但是发现还是不兼容;还是要利用DOSBox虚拟编译,连接; 开始加载程序,单步调试; 栈的效果: 因为这里的ss:sp位置恰好都是0,看不出ax,bx发生了交换; Source Code: ...
分类:
其他好文 时间:
2017-05-29 22:56:07
阅读次数:
204
原文链接:http://www.mamicode.com/info-detail-1598346.html crontab命令 crontab命令常见于Unix和类Unix的操作系统之中,用于设置周期性被执行的指令。该命令从标准输入设备读取指令,并将其存放于“crontab”文件中,以供之后读取和执 ...
分类:
其他好文 时间:
2017-05-29 22:56:02
阅读次数:
316
这是为了防止文档在完全加载(就绪)之前运行 jQuery 代码。$(document).ready() 方法允许我们在文档完全加载完后执行函数$(document).ready(function(){ // jQuery methods go here...}); 简写:$(function(){ ...
分类:
Web程序 时间:
2017-05-29 22:55:53
阅读次数:
238
#_author:"ljk"#date: 2017/5/26# a = ["L0","L1","L2","L3","L4","L5"]#中括号 表示列表#增删改查#增,切片#想取 L1 L2#print(a[1:3])#因为 顾头不顾尾,1-3代表L1 L2 L3,,左边L1可取,L3不可取#查:# ...
分类:
其他好文 时间:
2017-05-29 22:55:46
阅读次数:
300
[BZOJ2734][HNOI2012]集合选数 试题描述 《集合论与图论》这门课程有一道作业题,要求同学们求出{1, 2, 3, 4, 5}的所有满足以下条件的子集:若 x 在该子集中,则 2x 和 3x 不能在该子集中。同学们不喜欢这种具有枚举性质的题目,于是把它变成了以下问题:对于任意一个正整 ...
分类:
其他好文 时间:
2017-05-29 22:55:40
阅读次数:
162