问题提示:Unable to execute dex: java.nio.BufferOverflowException. Check the Eclipse log for stack trace.Conversion to Dalvik format failed: Unable to exec...
分类:
编程语言 时间:
2014-06-25 17:18:38
阅读次数:
292
1 ;就是一个串str1, lea ebx, str1 然后我们ebx+1总是加上的是一个字节, 无论(串是word, byte, dword) 2 .386 3 .model flat 4 .stack 4096 5 include io.h 6 ExitProcess proto near32....
分类:
其他好文 时间:
2014-06-25 11:49:37
阅读次数:
205
堆栈详解:http://wenku.baidu.com/link?url=X2J1DAFEl4RLoEGzaIEHqT9FlDRH3cACnucTwkn0pUcbF_zUxjmyW44qNVfOC3ZIBPDQ_vIoBLA8_1CECIXydWpzUjKSBfbJaySACyxDXx7
分类:
Web程序 时间:
2014-06-25 09:05:26
阅读次数:
170
在计算最短路径之前,往往会先计算最短路径树,也就是计算从一个顶点出发,到其余所有顶点的最短距离。
有了最短路径树之后,路径和距离就非常容易实现了:
public double distTo(int v) {
return distTo[v];
}
public Iterable pathTo(int v) {
Stack result = new Sta...
分类:
其他好文 时间:
2014-06-25 08:16:29
阅读次数:
246
1. A2DP Introduction
The Advanced Audio Distribution Profile (A2DP) defines the protocols and procedures
that realize distribution of audio content of high-quality in mono or stereo on ACL
channels...
分类:
移动开发 时间:
2014-06-24 23:15:47
阅读次数:
509
OK,上一篇总结了executionmodules的用法。这一篇准备总结一下statemodules该怎么写。顺便把上一篇executionmodules遗留下来的那个装饰器给写一下。看一下写的这个模块
root@salt-master:~#cat/srv/salt/_modules/liss.py
importsalt.utils.decoratorsasdecorators
importos
@d..
分类:
其他好文 时间:
2014-06-24 17:00:37
阅读次数:
265
Java栈与堆 ----对这两个概念的不明好久,最终找到一篇好文,拿来共享 1. 栈(stack)与堆(heap)都是Java用来在Ram中存放数据的地方。与C++不同,Java自己主动管理栈和堆,程序猿不能直接地设置栈或堆。 2. 栈的优势是,存取速度比堆要快,仅次于直接位于CPU中的寄存器。但缺...
分类:
编程语言 时间:
2014-06-24 15:00:48
阅读次数:
278
深度优先算法
问题
给定一个有向图,判断其顶点能否到达另外一个顶点。
解决办法
使用深度优先算法,和无向图中的是一样的。
代码
import java.util.Stack;
/**
* Created by caipeichao on 14-6-11.
*/
public class Digrap...
分类:
其他好文 时间:
2014-06-22 21:32:28
阅读次数:
250
先普及小知识:
STL 中栈的使用方法(stack)
基本操作:
push(x) 将x加入栈中,即入栈操作
pop() 出栈操作(删除栈顶),只是出栈,没有返回值
top() 返回第一个元素(栈顶元素)
size() 返回栈中的元素个数
empty() 当栈为空时,返回 true
STL 中队列的使用(queue)
基本操作:...
分类:
其他好文 时间:
2014-06-22 19:09:51
阅读次数:
169
TGLStackedViewControllerA stack layout with gesture-based reordering using UICollectionView -- inspired by Passbook and Reminders apps.这是一种使用了UICollec...
分类:
其他好文 时间:
2014-06-22 10:47:19
阅读次数:
290