Using Controls in a Form Design [AX 2012]This
topic has not yet been rated-Rate this topic Updated:January 27, 2012 Applies
To:Microsoft Dynamics AX 2...
分类:
其他好文 时间:
2014-06-29 13:45:59
阅读次数:
249
Overview of Form Control Types [AX 2012]Other
Versions 0 out of 1 rated this helpful-Rate this topic Updated:October 11, 2011
Applies To:Microsoft Dyn...
分类:
其他好文 时间:
2014-06-29 12:22:53
阅读次数:
367
一直想要写的 二叉树 中序 先序 后序遍历算法
递归的太简单了,就不写了。关键是非递归版本。
先序:
我自己的版本:
void RootPreTraverse(Node* p)
{
Stack S;
while(S not empty)
{
p=S.top();
S.pop();
Show(p);
if(p->right!=null)
S...
分类:
其他好文 时间:
2014-06-20 10:55:49
阅读次数:
279
官方帮助http://space.cnblogs.com/forum/topic/8550
注:如果自动配置没有成功,需要手动配置: a) 在“Type of weblog that you are
using”中选择“Custom(Metaweblog API)”。b) “Remote posti...
kill -15 pid 即: kill SIGNTERM pid不要使用kill -9。kill
-15会触发调用shutdownHook的run方法,从而可以执行关闭服务器的时候一些必要代码。kill -9不会触发shutdownHookkill -0
pid (kill SIGINT pid)...
分类:
其他好文 时间:
2014-06-11 13:12:36
阅读次数:
690
首先通过VMWare修改虚拟机参数,增加虚拟机磁盘空间(请参考相关资料),其次在虚拟机中加入扩容的磁盘空间。
1、使用parted查看可分配的空间
[root@stest ~]# parted
GNU Parted 1.8.1
使用 /dev/sda
Welcome to GNU Parted! Type 'help' to view a list of commands.
(part...
分类:
系统相关 时间:
2014-06-07 15:34:37
阅读次数:
296
Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.
The Sudoku board could be partially filled, where empty cells are filled with the character '.'.
A partially fille...
分类:
其他好文 时间:
2014-06-07 12:51:12
阅读次数:
225
查看topics:ls
/brokers/topics[mytopic]查看topic所在的broker,下面例子,mytopic在broker 0 中管理。ls
/brokers/topics/mytopic[0]查看brocker中,某个topic有多少partition:get /broker...
分类:
其他好文 时间:
2014-06-07 09:34:35
阅读次数:
222
原题地址:https://oj.leetcode.com/problems/sudoku-solver/题意:Write
a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are
indicated b...
分类:
编程语言 时间:
2014-06-07 09:30:06
阅读次数:
342
Table Properties [AX 2012]1 out of 2 rated this
helpful-Rate this topic Updated:July 20, 2012 Applies To:Microsoft Dynamics AX
2012 R2, Microsoft Dyna...
分类:
其他好文 时间:
2014-06-05 20:02:44
阅读次数:
547