码迷,mamicode.com
首页 > 2014年10月27日 > 全部分享
A Tour of Go Exercise: Slices
ImplementPic. It should return a slice of lengthdy, each element of which is a slice ofdx8-bit unsigned integers. When you run the program, it will di...
分类:其他好文   时间:2014-10-27 06:54:12    阅读次数:281
beanutils中Lazy
public class LazyBean {// public static void main(String[] args) {// DynaBean dynaBean=new LazyDynaBean();// dynaBean.set("foo", "bar");//单独// dyna...
分类:其他好文   时间:2014-10-27 06:53:35    阅读次数:235
beanutils中jdbc
public class JDBCTest {// public static void main(String[] args) throws Exception {// Class.forName("com.mysql.jdbc.Driver");// Connection conn=Driv.....
分类:数据库   时间:2014-10-27 06:53:27    阅读次数:214
A Tour of Go Range
Therangeform of theforloop iterates over a slice or map.package mainimport "fmt"var pow = []int{1, 2, 4, 8, 16, 32, 64, 128}func main() { for i, v ...
分类:其他好文   时间:2014-10-27 06:52:09    阅读次数:183
beanutils中WrapDynaBean
public class Emp { private String firstName="李"; private String lastName; public Emp() { } ; public String getFirstName() { return firstName; } pub...
分类:其他好文   时间:2014-10-27 06:52:17    阅读次数:218
调试.NET程序OutOfMemoryException (转载)
应用程序调试,需要有个常规的调试思路,应对各类问题最基本的调试手段是什么,不能一头雾水的上手而乱了阵脚,而且根据经验统计这些基本的步骤可以解决大多数的问题。
分类:Web程序   时间:2014-10-27 06:51:40    阅读次数:275
beanutils设置参数和获取参数
public class Employee implements DynaBean { private String firstName="李"; private String lastName; public Employee() { } ; public String getFirstNam.....
分类:其他好文   时间:2014-10-27 06:52:31    阅读次数:226
[Leetcode] Convert Sorted Array to Binary Search Tree
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.Solution:/** * Definition for binary tree * public cl...
分类:其他好文   时间:2014-10-27 06:51:31    阅读次数:137
c++ 遍历ini
inline void CDLG_SET1::EnumIniFile(LPCTSTR pFilePath, CString strKey){ TCHAR strAppNameTemp[1024];//所有AppName的返回值 TCHAR strKeyNameTemp[1024];//对...
分类:编程语言   时间:2014-10-27 06:51:39    阅读次数:195
调整JVM堆内存解决OutOfMemoryError
遇到OutOfMemoryError后,借助jconsole工具,经过多次调整JVM的HeapSize解决了问题。
分类:其他好文   时间:2014-10-27 06:51:41    阅读次数:243
SQL Server 2008 安装(lpt亲测)
SQL Server安装真的遇到好多问题啊!! 于是就决定写个备忘,方便自己也方便别人。 1.下载安装包 2.打开安装包,就遇到了restart computer 那里failed的错误,导致无法继续,一开始以为安装包的问题,后来查了下才发现不是,动作如下: 开始 —> 运行regedit —...
分类:数据库   时间:2014-10-27 06:49:41    阅读次数:209
Go Slices: usage and internals
IntroductionGo's slice type provides a convenient and efficient means of working with sequences of typed data. Slices are analogous to arrays in other...
分类:其他好文   时间:2014-10-27 06:50:33    阅读次数:264
特征提取与特征选择
模式识别 机器学习 特征提取和特征选择...
分类:其他好文   时间:2014-10-27 01:49:59    阅读次数:225
链表的倒序输出
链表的倒序输出,我们可能想到的方法就是把链表翻转后然后再遍历一遍,这样的话时间复杂度是O(n),但是缺点是代码稍微复杂。或者是开辟一个数组,顺序遍历一个链表把元素复制到数组里面,最后再把数组倒序输出。其实这道题目时间复杂度都不可能低于O(n),但是考虑用栈的话代码就可能非常简单,代码如下所示: #include using namespace std; struct Node { int ...
分类:其他好文   时间:2014-10-27 01:47:56    阅读次数:179
最简单易用的verilog学习练习工具silos初次使用。
最近开始学verilog数字硬件语言编程,然而用什么解释器好呢? 有推荐modelsim+quart但太大了,决定要silos...
分类:其他好文   时间:2014-10-27 01:48:36    阅读次数:738
POJ 3905 Perfect Election(2-sat)
POJ 3905 Perfect Election 题目链接 思路:很裸的2-sat,就根据题意建边即可 代码: #include #include #include #include #include using namespace std; const int MAXNODE = 2005; struct TwoSet { int n; vector ...
分类:其他好文   时间:2014-10-27 01:46:37    阅读次数:183
逗比学习树莓派之初篇
树莓派的官网提供了三个版本的镜像文件,还有无数第三方的镜像,由于是初次接触,还是用官网的Raspbian版本,因为是基于Debian的,所以Debian的一些命令和配置方法可以用得上。还要下载Win32DiskImager工具,用于在Windows下将下载的IMG文件写入到SD卡中...
分类:其他好文   时间:2014-10-27 01:48:06    阅读次数:235
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!