防抖时间设的不是太好.... 1 /* 2 ::按键控制 3 PA8接LED,PE2接按键 4
*/ 5 #include"stm32f10x.h" 6 void RCC_Configuration(void); 7 void
GPIO_Config(void); 8 void Delay(__IO...
分类:
其他好文 时间:
2014-04-29 18:26:23
阅读次数:
466
没说的 暴力打表#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
项目中有一个点赞功能,点赞的小图标添加在点赞列表旁边,在xml里可以进行设置,也可以在代码中进行绘图。下面是两种方法的设置:1、xml里:一些控件:button、textView等等里面有个属性是android:drawableLeft就可以将pic设置到text的左边。good....2、代码中:...
分类:
移动开发 时间:
2014-04-29 18:17:15
阅读次数:
461
java.lang.SecurityException: Requires
READ_PHONE_STATE: Neither user 10088 nor current process has
android.permission.READ_PHONE_STATE.今天写了一款发短信的软件,拿了...
分类:
移动开发 时间:
2014-04-29 18:16:15
阅读次数:
1324
最近在看读《STL源码剖析》,看到Traits编程技法这节时,不禁感慨STL源码作者的创新能力。那么什么是Traits编程技法呢?且听我娓娓道来:
我们知道容器的许多操作都是通过迭代器展开的。其中容器类似于数组,迭代器类似于指针。我们用数组来写个例子:1 int arr[5] = {1,2,3...
分类:
其他好文 时间:
2014-04-29 18:15:15
阅读次数:
463
2014-04-28
22:05题目:写个程序判断三连棋哪一方赢了。解法:三个相同的棋子连成一条横线,竖线或者对角线就判断为赢了。代码: 1 // 17.2 Write an
algorithm to check if someone has won the tic-tac-toe game. 2 ...
分类:
其他好文 时间:
2014-04-29 18:12:07
阅读次数:
474
2014-04-28
22:32题目:不用if语句或者比较运算符的情况下,实现max函数,返回两个数中更大的一个。解法:每当碰见这种无聊的“不用XXX,给我XXX”型的题目,我都默认处理的是int类型。最高位是符号位,用x
- y的符号位来判断谁大谁小。请看下面代码,条件表达式配合异或运算能满足题目...
分类:
其他好文 时间:
2014-04-29 18:10:05
阅读次数:
395
package com.szy.service;import
android.app.IntentService;import android.content.Intent;import
android.util.Log;public class ExampleIntentService exten...
分类:
其他好文 时间:
2014-04-29 18:02:50
阅读次数:
432
一、jstl标签的下载与配置摘要:下载地址http://www.apache.org/dist/jakarta/taglibs/standard/,主要standard.jar
与 jstl.jar 两个jar文件,若为所有web应用使用可拷贝到tomcat的 lib目录下,若为当前应用使用拷贝到W...
分类:
Web程序 时间:
2014-04-29 17:55:44
阅读次数:
699