This tutorial will guide you on how to install
JDK (Java Development Kit) on Linux. Since I use Centos 5.4 x86_64 in everyday
life, this guide is show...
分类:
编程语言 时间:
2014-05-23 12:39:44
阅读次数:
710
This is a simple tutorial to show a new linux user
(such as myself) how to setup freeglut and OpenGl. OS: ubuntu 12.1 I have just
recently become a .....
分类:
其他好文 时间:
2014-05-23 11:07:45
阅读次数:
380
It is not possible using the .NET BCL. However if
you really want it you can use native SetCursorPos inUser32.dll.
[DllImport("User32.dll")]private st...
分类:
其他好文 时间:
2014-05-23 10:16:34
阅读次数:
236
??
A Stack or A Queue?
Time Limit:
1 Second Memory Limit: 32768 KB
Do you know stack and queue? They're both important data structures. A stack is a "first in last out" (FILO) data ...
分类:
其他好文 时间:
2014-05-22 12:24:38
阅读次数:
236
In Express 3.0, you normally would use app.configure() (or app.use() ) to set up the required middleware you need. Those middleware you specified are bundled together with Express 3.0.
e.g.
var ex...
分类:
移动开发 时间:
2014-05-22 12:14:27
阅读次数:
349
Description
You are given a string consisting of parentheses () and []. A string of this type is said to be correct:
(a)if it is the empty string(b)if A and B are correct, AB is correct,(c)...
分类:
其他好文 时间:
2014-05-22 09:53:27
阅读次数:
295
mysql 自定义存储过程和触发器
--存储过程示范
DROP PROCEDURE IF EXISTS PRO_TEST;
CREATE PROCEDURE PRO_TEST(IN NUM_IN INT,OUT NUM_OUT INT,INOUT NUM_INOUT)
BEGIN
//DO ANYTHING YOU WANT
END;
参数解释:
in : 就是输入参数,输...
分类:
数据库 时间:
2014-05-22 06:42:40
阅读次数:
345
【题目】
Write a program to solve a Sudoku puzzle by filling the empty cells.
Empty cells are indicated by the character '.'.
You may assume that there will be only one unique solution.
A sudoku puzzle...
...and its solution numbers marked in red.
...
分类:
其他好文 时间:
2014-05-20 17:07:34
阅读次数:
335
题目:
Given an array of integers, every element appears
three times except for one. Find that single one.
Note:
Your algorithm should have a linear runtime complexity. Could you implem...
分类:
其他好文 时间:
2014-05-20 16:22:52
阅读次数:
241
第一种情况:char* p="how are you ?";char
name[20]="ABCDEFGHIJKLMNOPQRS";strcpy(name,p); //name改变为"how are you ? OPQRS "
====>错误!strncpy(name,p,sizeof(name))...
分类:
其他好文 时间:
2014-05-20 10:50:19
阅读次数:
258