lua 73

#Lua
Java 编码例子

package org.test; import java.io.UnsupportedEncodingException; public class GetCharTest { …

2015-12-17 899

#Lua
直接插入排序,快速排序,选择排序给学生成绩排名

#include<stdio.h> #include<malloc.h> #include<string.h> typedef struct{ …

2015-12-17 560

#Lua
复制文件

/** 工具包: commons-io-1.3.2.jar */ //struts2 中 String realPath = ServletActionContext.getSer…

2015-12-17 668

#Lua
数制转换

#include<stdio.h> #include<stdlib.h> typedef int SElemType ; unsigned n;//非负整数…

2015-12-17 406

#Lua
APS算法-截取时间范围内的时间段

/// <summary> /// 截取时间范围内的时间段 /// </summary> public static List<SJDuan> …

2015-12-17 282

#Lua
javaweb学习

javaweb学习

2015-12-17 798

#Lua
linux下uname命令说明

当你输入uname不带参数时,它仅仅显示你的操作系统的名字。 # uname Linux 也许这还不能满足你的需要。所以你需要加上一些参数,来使uname显示你所需要的信息。 以下…

2015-12-17 876

#Lua
表达式运算(栈)

#include <stdio.h> #include <stdlib.h> #define STACK_INIT_SIZE 100 #define STA…

2015-12-17 274

#Lua
24 game

#!/usr/bin/env perl6 my @nums; grammar InfixNotation { rule TOP { ^ <expr> $ } token…

2015-12-17 304

#Lua
使用map和reduce函数将str转换为float

def str2float(s): def str2int(ns): return {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5,…

2015-12-17 367

#Lua
哈弗曼树

#include<stdio.h> #include<stdlib.h> #include<string.h> #define UINT_MAX…

2015-12-17 484

#Lua
代理 必须实现和可实现@required 和@optional

@protocol DaiLi <NSObject> //默认是必须实现的 //必须实现 @required - (void)finshTask; - (void)do…

2015-12-17 938
1 2 3 7