- 浏览: 300885 次
- 性别:
- 来自: 北京
最新评论
-
aib628:
真是好东东,正在学习中!
Jython 简单入门 -
jiguanghover:
不错的例子,好好看看
Jython 简单入门 -
rmn190:
不错, 现在正在从Java转到Python这边来, 以前用Ja ...
Jython 简单入门 -
kandari:
有没有openSUSE的
用NTP网络时间协议同步你的IT系统 -
CharlesCui:
winmail.dat是个垃圾!气死我了.
如何提取 winmail.dat ?
文章列表
Lucasfilm is one of the world's leading film and entertainment companies.
Qt enabled cross platform graphical element development
Qt helped LucasFilm Entertainment save time and money on development projects
“We used Qt for a few small projects and were impressed with its
ease-of-use ...
WEB方式:
http://us.mdbg.net/chindict/chindict.php
http://www.dict.cn
http://www.jukuu.com
http://www.nciku.com
http://www.iciba.com/
http://translate.google.com/
MSN方式:
nciku5@msn.com
iciba_015@hotmail.com
- 2009-02-03 22:07
- 浏览 1102
- 评论(0)
最近,一朋友买了个魅族的M8手机,整天拨弄,爱不释手。一次找我说,下载了一堆lrc歌词,结果在M8里播放都是乱码,怎么回事,有没有什么解决办法。我说,好办,其实是gb2312和unicode编码的问题,给你写个python脚本就搞定一切:
import os
import glob
import codecs
files = glob.glob(r'd:\temp\lrc_gbk\*.lrc')
savepath = r'd:\temp\lrc_unicode'
for file in files:
print '>>', file
fh = open( ...
- 2009-01-20 00:41
- 浏览 2259
- 评论(1)
BST树(未完成):
#include <iostream>
#include <cstdlib>
using namespace std;
template<class Type> class BST
{
private:
BST<Type> *lchild, *rchild;
public:
Type data;
BST(Type data)
{
this->data = data;
lchild = NULL;
rchild = NULL;
}
~BST()
...
- 2009-01-06 00:18
- 浏览 1430
- 评论(0)
XMind总体还不错,内置很多实用模板结构,要是速度有FreeMind那么快就好了,还有,不知道如何支持公式编辑。
对了,官方网站 http://www.xmind.net 注册帐号之后,支持上传保存/共享你的思维导图。
- 2009-01-05 12:57
- 浏览 2205
- 评论(0)
动漫店的老板在发电子邮件时,屏幕上一行hello-world,清楚地显示着运行错误:segmentation fault! core dumped!
貌似Linux、C编程在美国已经成了家常便饭了……
1. 用Jython调用Java类库
第一步、创建Java类
写一个简单的Java类,用Point来示例:
import org.python.core.*;
public class Point extends PyObject
{
private int x;
private int y;
public Point()
{
x = 0;
y = 0;
}
public Point(int x, int y)
{
this.x = x;
...
Old Rank Author/Editor Title Year Amazon
2 1 Frank Herbert Dune [S1] 1965 Shop at Amazon USA Shop at Amazon UK
1 2 Orson Scott Card Ender's Game [S1] 1985 Shop at Amazon USA Shop at Amazon UK
3 3 Isaac Asimov Foundation [S1 ...
- 2008-12-30 14:23
- 浏览 1219
- 评论(0)
《数据结构》自己练习用的代码,顺序表的简单实现,实现了一部分而已
// 请随意使用和修改
#include <iostream>
#include <cstdlib>
using namespace std;
template<class Type> class SeqList
{
public:
SeqList()
{
data = NULL;
MaxSize = 0;
len = 0;
}
SeqList(int size)
{
data = new Type[siz ...
- 2008-12-27 21:59
- 浏览 879
- 评论(0)
近日在复习数据结构,贴一下练习写的代码,线性链表:
// 如果这段代码对你有用,请任意处置。
#include <iostream>
#include <cstdlib>
using namespace std;
template<class Type> class LinkList;
template<class Type> class SNode
{
friend class LinkList<Type>;
private:
Type data;
SNode<Type> ...
发现一段很诡异的C#代码,见识了静态构造函数这种奇怪的东西:
using System;
namespace StaticTest
{
class A
{
public static int X;
static A()
{
X = B.Y + 1;
}
}
class B
{
public static int Y = A.X + 1;
static B()
{
}
static void Main()
{
Console.WriteLine("X={0}, Y={1}&quo ...
忍住了标题党的冲动……忍不住标题党的冲动……小结下自己熬夜时的生活习惯:
let 必需品 = [ x | x <- [一壶开水, 一包坚果, 一个星巴克保温杯, 咖啡] ]
class 开水:
'''水是生命的源泉……水有很多作用'''
def 泡咖啡(self):
if 在家:
return 咖啡().黑咖啡()
if 不在家:
return 公司的咖啡 or 咖啡().冲剂咖啡()
def 润眼睛(self):
...
List入门-haskell趣学指南
338个读者
ssword
@ yeeyan.com 12/04/2008
双语对照
原文
字体大小
小
中
大
简介
一点关于haskell中List的内容
List入门
在Haskell
中,List同现实世界中的购物单一样重要。它是最常用的数据结构,并且十分强大,灵活地使用它可以解决掉很多问题。在本节,我们将对List,字符串和list comprehension有个初步了解。
在Haskell
中,List是一种单类型的数据结构,可以用来存储多个类型相同的元素。我们可以在里面装一组数 ...
- 2008-12-24 00:00
- 浏览 2149
- 评论(0)