#define stack_init_size 100
#define stackincrement 10
typedef int ElemType;
typedef int status;
const status error=0;
const status ok=1;
const status overflow=-2;
const int MAXSIZE = 100;
typedef st...
分类:
其他好文 时间:
2014-05-26 06:17:29
阅读次数:
243
今年穿戴设备突然火起来......穿戴设备与概念未爆发前的电子产品不同于“可联网”和“支持app”,使得一个封闭的小玩意可以加入多人的想象,屌丝的想象力很丰富的说....
穿戴设备目前分为"屌丝“和”高富帅“两档配置,所谓”屌丝”配置也就是弱得装不上android,未来一段时间内,手表和手环都以“屌丝”配置为主,例如pebble和sony手表以arm cortex m3芯,不过"高富帅"geek watch用上android....吹完水,就说本文的重点,如何让弱性能设备支持app,也就是把lua移植到st...
分类:
移动开发 时间:
2014-05-26 05:04:02
阅读次数:
278
把2014-5-5 22:02:11:15 这样格式的时间转换成2014年5月5日
SimpleDateFormat in = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
SimpleDateFormat out = new SimpleDateFormat("yyyy年MM月dd日");
St...
分类:
编程语言 时间:
2014-05-26 03:50:18
阅读次数:
287
/*ID: neverchanjePROG:LANG:
C++11*/#include#include#include#include#include#include#include#include#include#define
INF 0Xfffffffff#define st_size (1>c...
分类:
其他好文 时间:
2014-05-26 02:26:24
阅读次数:
222
1 import java.text.SimpleDateFormat; 2 import
java.util.Date; 3 import javax.swing.JOptionPane; 4 5 public class Ch2Sample1 {
6 7 public st...
分类:
其他好文 时间:
2014-05-25 22:27:03
阅读次数:
269
Sencha removed the refreshFn from the pullrefresh
plugin in ST 2.2. Here is an user extension with gives the old functionality
back to you./** * This ...
分类:
其他好文 时间:
2014-05-25 19:39:42
阅读次数:
289
-----006-variable.php ----- 1 2 3 4 5 一个PHP网页 6 7 8
\n";15 }16 static_test();17 static_test();18 static_test();19 st...
分类:
Web程序 时间:
2014-05-25 19:37:54
阅读次数:
257
题目来源:POJ 2019 Cornfields
题意:求正方形二维区间最大最小值的差
思路:直接二维ST搞 试模版而已
#include
#include
#include
using namespace std;
const int maxn = 255;
int dp[maxn][maxn][8][8];
int dp2[maxn][maxn][8][8];
int a[...
分类:
其他好文 时间:
2014-05-25 10:21:07
阅读次数:
246
ST
int dp[maxn][20];
int a[maxn];
void RMQ_init(int n)
{
int i,j,k;
for(i = 1; i <= n; i++)
dp[i][0] = a[i];
k = (int) (log((double)n + 0.2) / log(2.0));
for(j = 1; j <= k; j++)
for(i =...
分类:
其他好文 时间:
2014-05-25 09:45:08
阅读次数:
227
STM8L 系列单片机是
ST公司推出的低功耗单片机,与STM8S系列相比功耗降低了很多,但内部结构也删减了很多,使用时一定要仔细阅读手册。 (本人
因为中断问题纠结了大半天),这是第一次使用STM8实现功能不是很复杂,就没想研究库函数,准备直接控制寄存器操作。在外部中断中这一点很不同, S...
分类:
其他好文 时间:
2014-05-25 03:46:27
阅读次数:
292