码迷,mamicode.com
首页 >  
搜索关键字:st    ( 5888个结果
Linux 内核 链表 的简单模拟
第零章:扯扯淡 出一个有意思的题目:用一个宏定义FIND求一个结构体struct里某个变量相对struc的编移量,如struct student{ int a; //FIND(struct student,a) 等于0 char b; //FIND(struct st...
分类:系统相关   时间:2014-06-11 10:23:14    阅读次数:361
几个非常有用的js小函数
1 function $(v){ 2 if(typeof v==="function"){ 3 window.onload=v; 4 }else if(typeof v==="st...
分类:Web程序   时间:2014-06-09 16:14:23    阅读次数:250
【HDOJ】1881 毕业bg
01背包。 1 #include 2 #include 3 #include 4 5 #define MAXN 1005 6 7 typedef struct { 8 int h, l, t; 9 } node_st;10 11 node_st nodes[35];12 13 in...
分类:其他好文   时间:2014-06-08 22:44:08    阅读次数:339
smartJS 0.1 API 讲解 - PromiseEvent
上篇简单的介绍smartjs了一些通用方法的api。这篇介绍基础的PromiseEvent(这个名字一直没想好,以前准备用callbacks的,但避免与jquery混淆,st的命名空间可以直接挂到$上)PromiseEvent基于事件和promise的回调管理,类似于jquery的callbacks...
分类:Windows程序   时间:2014-06-08 20:57:58    阅读次数:484
分割RGB中物体并计算数目
I=imread(im_path); axes(handles.axes1); imshow(I), % title('原始图像'); %计算每个像素点的真实长度 [x,y]=ginput(2); length=str2double(get(handles.edit5,'st...
分类:其他好文   时间:2014-06-08 18:11:31    阅读次数:263
任意数相加求和
在网上看到一端代码,觉得很新颖,特此记录下来以供大家学习参考:用C#写一个函数。功能如下: 任意给定一组数,例如{12,60,-8,99,15,35,17,18},找出任意数相加(不能重复)之后的结果为35(任意设定)的情况 例如:12+8+15;35;17+18。算法如下: private st....
分类:其他好文   时间:2014-06-07 09:41:53    阅读次数:185
java的toString是一个什么方法,为什么我在类中重写他,当输出该类对象的时候却能显示里面的结果?(转)
例如:我输出的是一个对象,却调用到了toString方法public class TTT {private String id;private String name;public void setId(String id) {this.id = id;}public void setName(St...
分类:编程语言   时间:2014-06-06 16:37:51    阅读次数:277
动态获取Drawable图片资源
比如Drawable中有一系列连续的图片,img_0.png, img_1.png, img_2.png ...如果要动态获取这些图片,通过"R.drawable.img_x"的ID方式指定是不行的,因为这个ID无法动态变化,即你是无法通过字符串拼接的方法来实现的。但可以通过下面方式获取:```St...
分类:其他好文   时间:2014-06-06 09:30:49    阅读次数:253
归并排序算法
import static org.junit.Assert.*;import java.util.Arrays;import org.junit.Test;public class SortAlgorithms { /** * 归并排序算法 * * @param a * @return */ st...
分类:其他好文   时间:2014-06-06 07:26:53    阅读次数:273
visual studio 2014 新特性
原文如下:Visual Studio "14" CTPToday, we are making available afirst community technology previewof the next version of Visual Studio, codenamed Visual St...
分类:其他好文   时间:2014-06-05 18:11:37    阅读次数:351
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!