首页 > 其他
*Valid Parentheses
题目:Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the corre...
分类:其他   时间:2015-09-16 06:23:04    收藏:0  评论:0  赞:0  阅读:228
[LeetCode#277] Find the Celebrity
Problem:Suppose you are at a party withnpeople (labeled from0ton - 1) and among them, there may exist one celebrity. The definition of a celebrity is ...
分类:其他   时间:2015-09-16 06:22:44    收藏:0  评论:0  赞:0  阅读:264
优化PLM-ERP集成来满足动态的企业信息集成需求
在一个产品的全生命周期里面,PLM 产品生命周期管理负责产品开发流程和数据的管理,ERP则负责产品的生产及物料控制过程。 PLM和ERP的集成对一个企业来说,是尤为重要的。主要体现的:在PLM中设计和发布的产品结构和产品零件信息可以传输到ERP系统中自动生成或者更新已有物料和产品结构,由于零配件采购...
分类:其他   时间:2015-09-16 06:22:24    收藏:0  评论:0  赞:0  阅读:253
[Angular 2] 9. Replace ng-modle with #ref & events
Let's say you want to write a simple data bing app. when you type in a text box, somewhere in the application will show the result.In Angular 1, you c...
分类:其他   时间:2015-09-16 06:22:14    收藏:0  评论:0  赞:0  阅读:253
Reverse Linked List 解答
QuestionReverse a singly linked list.Solution 1 -- IterativeRemember to set head.next = null or it will report "memory limit exceeds" error. 1 /** 2 ....
分类:其他   时间:2015-09-16 06:21:54    收藏:0  评论:0  赞:0  阅读:241
软件工程的实践项目的自我目标
对实践项目完成后学习到的能力的预期:提高个人的编码能力。能够独立进行一些简单的软件开发。对项目课程的期望:希望能够通过这门课程,详细了解开发软件是怎样的一个流程以及能够真实体验团队开发所会遇到的各种问题。对项目的愿景规划:(ps:目前自己还是一个对于软件开发没有任何概念的同学)所以感觉自己要学的实在...
分类:其他   时间:2015-09-16 06:20:34    收藏:0  评论:0  赞:0  阅读:205
如何通过PLM和PLM-ERP集成来辅助管理复杂性
Managing complexity is something almost everyone dealing with PLM is talking about and there is a good reason for it. Managing complexity is one of th...
分类:其他   时间:2015-09-16 06:20:14    收藏:0  评论:0  赞:0  阅读:389
字符串逆序小结
1.普通逆序 可以任意申请内存或变量,对于指针版本,此方法不好,需要在函数内开辟空间,在函数结束前返回该空间首地址,由于不能释放该内存,出现内存泄漏 ,所以这里只提供引用版本: #define _CRT_SECURE_NO_WARNINGS #include #include using names...
分类:其他   时间:2015-09-16 06:19:54    收藏:0  评论:0  赞:0  阅读:163
第二章 线性表
前言:线性表是最常用的一种数据结构。线性表是n个数据元素的有限序列。线性表有两种表示:顺序表示和链式表示。顺序表示是指以组连续的存储空间依次存储线性表的数据元素,如数组就是一个线性表。而链式表示的特带你是用一组任意的存储单元存储线性表的数据元素(也可以连续,也可以不联系)。在此,主要记录链式表的学习...
分类:其他   时间:2015-09-16 06:18:34    收藏:0  评论:0  赞:0  阅读:286
Leetcode Symmetric Tree
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric: 1 / \ ...
分类:其他   时间:2015-09-16 06:18:24    收藏:0  评论:0  赞:0  阅读:195
【转】Scala学习——注解
原文链接 http://nerd-is.in/2013-09/scala-learning-annotations/原文发表于:http://nerd-is.in/2013-09/scala-learning-annotations/注解可以在程序中的各项条目添加信息,这些信息可以被编译器或外部工具...
分类:其他   时间:2015-09-16 06:16:34    收藏:0  评论:0  赞:0  阅读:304
Leetcode Balanced Binary Tree
Given a binary tree, determine if it is height-balanced.For this problem, a height-balanced binary tree is defined as a binary tree in which the depth...
分类:其他   时间:2015-09-16 06:16:24    收藏:0  评论:0  赞:0  阅读:245
Longest Substring Without Repeating Characters 解答
QuestionGiven a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating le...
分类:其他   时间:2015-09-16 06:15:54    收藏:0  评论:0  赞:0  阅读:159
POJ 1777 mason素数
题目大意:给定数列a1 , a2 , ... , an希望找到一个 N = sigma(ai^ki) , (0 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 #define p...
分类:其他   时间:2015-09-16 06:15:14    收藏:0  评论:0  赞:0  阅读:161
第二讲:创建第一个Cocos2d-x项目
*创建一个cocos2dx项目:运行-cmd- 进入到...\cocos2d-x-3.0alpha0\cocos2d-x-3.6\tools\cocos2d-console\bincocos2d的文件夹不能有中文目录,不然创建的时候会有不成功的错误出现。cocos new TestGame -p c...
分类:其他   时间:2015-09-16 06:13:34    收藏:0  评论:0  赞:0  阅读:281
【转】Scala学习——模式匹配和样例类
原文链接 http://nerd-is.in/2013-09/scala-learning-pattern-matching-and-case-classes/原文发表于:http://nerd-is.in/2013-09/scala-learning-pattern-matching-and-ca...
分类:其他   时间:2015-09-16 06:13:05    收藏:0  评论:0  赞:0  阅读:266
define() vs const 该如何选择?
使用 define(),除非考虑到可读性、类常量、或关注微优化1、在 PHP 中是使用 define() 函数来定义常量,PHP 5.3.0 以后,PHP 中也能够使用 const 关键字来声明常量了,一个常量一旦被定义,就不能再改变或者取消定义2、常量只能包含标量数据(boolean,intege...
分类:其他   时间:2015-09-16 06:12:24    收藏:0  评论:0  赞:0  阅读:125
BigDecimal类的四则运算
import java.math.BigDecimal;public class Test { public static void main(String[] args) { BigDecimal a = new BigDecimal("1"); BigDecim...
分类:其他   时间:2015-09-16 06:11:54    收藏:0  评论:0  赞:0  阅读:209
MasonryAutoLayout 学习。
MasonryAutoLayout 学习。 ? 注释:左边都是 .left/ .right/.bottom/.top/.centerY/右边都是 :mad_right/mas_bottom/mas_top 等等。 self.reasonLabel = [[UILabel alloc] init]; ? ? [self.reasonLabel setBackgroundColor:[UICo ...
分类:其他   时间:2015-09-16 02:15:29    收藏:0  评论:0  赞:0  阅读:144
/*, / 的区别
/*表示的是所有,即针对所有操作,请求action被拦截,转到jsp页面也被拦截; /的话,大部分是用于现在的restful风格的操作。 ? 如图?如果用/*,就会匹配到login.jsp文件,从而进spring mvc过滤器(如果有过滤器),从而导致重定向循环。 否则,不会匹配,不会进过滤器,访问正常。
分类:其他   时间:2015-09-16 02:15:04    收藏:0  评论:0  赞:0  阅读:232
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!