首页 > 其他
SAP月结操作讲解
1、物料期间关闭只影响到物料的出入库,如果关闭某月份,该月份不能再进行出入库处理,对应的凭证也就不能再进入FI。因为月结前步骤很多,所以这是月结检查的其中一个步骤。以下转载自SAP 方丈的博客http://blog.vsharing.com/SAP100/A723983.htmlSAP月结操作讲解步...
分类:其他   时间:2014-02-06 16:31:58    收藏:0  评论:0  赞:0  阅读:2192
Merge Intervals
Given a collection of intervals, merge all overlapping intervals.For example,Given[1,3],[2,6],[8,10],[15,18],return[1,6],[8,10],[15,18]. 1 public clas...
分类:其他   时间:2014-02-06 16:32:48    收藏:0  评论:0  赞:0  阅读:418
Combination Sum II
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Each number ...
分类:其他   时间:2014-02-06 16:31:08    收藏:0  评论:0  赞:0  阅读:410
uva 10816(二分+Dijkstra)
题意:在一张图中会有重边,然后每条边上有两个权值,一个温度一个距离,让你找一条温度的最小瓶颈路,让这条最小瓶颈路距离最短。思路:二分温度,然后用Dijkstra判断,最后输出答案。虽然想到思路后很简单,但是我一开始没注意看会有重边所以错了好多次。代码如下: 1 /******************...
分类:其他   时间:2014-02-06 16:30:18    收藏:0  评论:0  赞:0  阅读:565
Combinations
Given two integersnandk, return all possible combinations ofknumbers out of 1 ...n.For example,Ifn= 4 andk= 2, a solution is:[ [2,4], [3,4], [2,3], [1...
分类:其他   时间:2014-02-06 16:29:28    收藏:0  评论:0  赞:0  阅读:447
Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesamerepeated num...
分类:其他   时间:2014-02-06 16:28:38    收藏:0  评论:0  赞:0  阅读:414
Remove Duplicates from Sorted List
1 public class Solution { 2 3 public ListNode deleteDuplicates(ListNode head) { 4 if(head==null) 5 return null; 6 if(head.next==null){ 7 return head; ...
分类:其他   时间:2014-02-06 16:27:48    收藏:0  评论:0  赞:0  阅读:387
Minimum Depth of Binary Tree
Given a binary tree, find its minimum depth.The minimum depth is the number of nodes along the shortest path from the root node down to the nearest le...
分类:其他   时间:2014-02-06 16:26:58    收藏:0  评论:0  赞:0  阅读:366
Subsets
Given a set of distinct integers,S, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set must not co...
分类:其他   时间:2014-02-06 16:25:18    收藏:0  评论:0  赞:0  阅读:423
N-Queens
1 public class Solution { 2 public ArrayList solveNQueens(int n) { 3 ArrayList res = new ArrayList(); 4 if(nres){ 9 if(row==n){10 StringBuilder [] sb ...
分类:其他   时间:2014-02-06 16:24:28    收藏:0  评论:0  赞:0  阅读:393
Merge Sorted Array
Given two sorted integer arrays A and B, merge B into A as one sorted array. 1 public class Solution { 2 public void merge(int A[], int m, int B[], in...
分类:其他   时间:2014-02-06 16:23:38    收藏:0  评论:0  赞:0  阅读:394
Implement strStr()
Returns a pointer to the first occurrence of needle in haystack, ornullif needle is not part of haystack. 1 public class Solution { 2 public String st...
分类:其他   时间:2014-02-06 16:22:48    收藏:0  评论:0  赞:0  阅读:381
Climbing Stairs
public class Solution { public int climbStairs(int n) { int f1 = 2; int f2 = 1; if(n<=0) return 0; if(n==1) return f2; if(n==2) return f1; int fn=0; f...
分类:其他   时间:2014-02-06 16:21:08    收藏:0  评论:0  赞:0  阅读:353
二叉树的遍历(一)
根据访问结点操作发生位置命名:① NLR:前序遍历(PreorderTraversal亦称(先序遍历))——访问根结点的操作发生在遍历其左右子树之前。② LNR:中序遍历(InorderTraversal)——访问根结点的操作发生在遍历其左右子树之中(间)。③ LRN:后序遍历(PostorderT...
分类:其他   时间:2014-02-06 16:20:18    收藏:0  评论:0  赞:0  阅读:407
WMI
http://singlepine.cnblogs.com/articles/299457.htmlhttp://www.cnblogs.com/haiq/archive/2011/01/14/1935377.html
分类:其他   时间:2014-02-06 16:19:28    收藏:0  评论:0  赞:0  阅读:305
Add Binary
1 public class Solution { 2 public String addBinary(String a, String b) { 3 int len1 = a.length(); 4 int len2 = b.length(); 5 StringBuilder sb = new S...
分类:其他   时间:2014-02-06 16:17:48    收藏:0  评论:0  赞:0  阅读:347
Plus One
1 public class Solution { 2 public int[] plusOne(int[] digits) { 3 int carry = 1; 4 for(int i=digits.length-1;i>=0;i--){ 5 digits[i] +=carry; 6 carry ...
分类:其他   时间:2014-02-06 16:18:38    收藏:0  评论:0  赞:0  阅读:352
First Missing Positive
Given an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]return3,and[3,4,-1,1]return2.Your algorithm should ru...
分类:其他   时间:2014-02-06 16:16:58    收藏:0  评论:0  赞:0  阅读:359
Permutations
Given a collection of numbers, return all possible permutations.For example,[1,2,3]have the following permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:其他   时间:2014-02-06 16:16:08    收藏:0  评论:0  赞:0  阅读:430
LeetCode: Copy List with Random Pointer
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ...
分类:其他   时间:2014-02-06 16:14:28    收藏:0  评论:0  赞:0  阅读:404
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!