Technical Notes (Domino Notes)
文章平均质量分 58
IBMCON
饼子
展开
-
Replication&Confliction Documents Treatment
Replication/Save conflicts document are a necessary in a distributed environment like Lotus Notes. A developer can do all he/she can to minimize conflicts through things like setting the form properties to merge conflicts if possible and using document loc原创 2010-11-08 14:52:00 · 471 阅读 · 0 评论 -
Simple Formula(Updating)
<br />1. [?@sum([?PARENTFIELD.counter]:1)] -----> [?PARENTFIELD.counter] = [?PARENTFIELD.counter] + 1原创 2010-11-08 14:58:00 · 268 阅读 · 0 评论 -
数据结构二分法
<br />package per; public class Array1 { public int find(int searchKey, int[] array) { int lowBound = 0; int uppBound = array.length - 1; int curIndex; while (true) { curIndex = (lowBound +原创 2010-11-08 15:44:00 · 360 阅读 · 0 评论