上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 95 下一页
摘要: 1、让对话框从CdialogResize类继承过来: class CMainDlg : public CDialogImpl, public CDoubleBufferImpl, public CDialogResize 2、添加消息路由 BEGIN_MSG_MAP(CMainDlg) CHA... 阅读全文
posted @ 2016-11-06 15:19 N3verL4nd 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 1、让对话框从CdialogResize类继承过来: class CMainDlg : public CDialogImpl, public CDoubleBufferImpl, public CDialogResize 2、添加消息路由 BEGIN_MSG_MAP(CMainDlg) CHA... 阅读全文
posted @ 2016-11-06 15:19 N3verL4nd 阅读(283) 评论(0) 推荐(0) 编辑
摘要: MNIST是一个标准的手写字符测试集。 Mnist数据集对应四个文件: train-images-idx3-ubyte: training set images train-labels-idx1-ubyte: training set labels t10k-images-idx3-ub... 阅读全文
posted @ 2016-11-06 09:15 N3verL4nd 阅读(1610) 评论(0) 推荐(0) 编辑
摘要: Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. The brackets must close in... 阅读全文
posted @ 2016-11-06 00:25 N3verL4nd 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. The brackets must close in... 阅读全文
posted @ 2016-11-06 00:25 N3verL4nd 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Determine whether an integer is a palindrome. Do this without extra space. click to show spoilers. Some hints: Could negative integers be palindr... 阅读全文
posted @ 2016-11-05 23:55 N3verL4nd 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 二分查找简介 二分查找是一种在有序数组中查找某一特定元素的搜索算法。搜索过程从数组的中间元素开始,如果中间元素正好是要查找的元素,则搜索过程结束;如果某一特定元素大于或者小于中间元素,则在数组大于或小于中间元素的那一半中查找,而且跟开始一样从中间元素开始比较。如果在某一步骤数组为空,则代表找不到... 阅读全文
posted @ 2016-10-30 23:11 N3verL4nd 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 二分查找简介 二分查找是一种在有序数组中查找某一特定元素的搜索算法。搜索过程从数组的中间元素开始,如果中间元素正好是要查找的元素,则搜索过程结束;如果某一特定元素大于或者小于中间元素,则在数组大于或小于中间元素的那一半中查找,而且跟开始一样从中间元素开始比较。如果在某一步骤数组为空,则代表找不到... 阅读全文
posted @ 2016-10-30 23:11 N3verL4nd 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Given a sorted array of integers, find the starting and ending position of a given target value. Your algorithm's runtime complexity must be in th... 阅读全文
posted @ 2016-10-30 22:48 N3verL4nd 阅读(105) 评论(0) 推荐(0) 编辑
摘要: md5.h #ifndef MD5_H#define MD5_Htypedef struct{ unsigned int count[2];/* 位数量, 模 2^64 (低位在前) */ unsigned int state[4];/* state (ABCD) */ unsigned cha... 阅读全文
posted @ 2016-10-30 21:48 N3verL4nd 阅读(139) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 95 下一页