首页 > 2014年12月23日 > 全部分享
UML笔记1---结合架构设计用对象建模
UML笔记1---结合架构设计用对象建模一.UML的视图和图视图,只是表达系统某一方面特征的UML建模组件的子集;视图被划分成三个视图域:结构分类、动态行为和模型管理。---结构分类,描述了系统中的结构成员及其相互关系。类元包括类、用例、构件和节点。类元为研究系统动态行为奠..
分类:其他   时间:2014-12-23 06:43:26    收藏:0  评论:0  赞:0  阅读:168
相信坚持下去就能成功
来北京1个月多20天了,今天北京时间(2014年12月23日12时05分),在这1个多月下来,我接触了cocos2d,从一点都不了解cocos2d到现在做了已经做了7个cocos2d的小游戏,小dome,加上平时自己晚上熬夜做了4个U3D的小游戏。学习的东西到时蛮多,可我感觉很多东西学了就忘了,没有记住..
分类:其他   时间:2014-12-23 06:43:13    收藏:0  评论:0  赞:0  阅读:212
cocos2d-x在Lua中添加3d模型创建3D动画
--3d模型和3D动画的创建require"Cocos2d"localSprite3DScene=class("Sprite3DScene",function()returncc.Scene:create()end)--添加create函数functionSprite3DScene:create()localscene=Sprite3DScene.new()scene:addChild(scene:init())returnsceneend--添加构造函数functionS..
分类:其他   时间:2014-12-23 06:43:04    收藏:0  评论:0  赞:0  阅读:287
前半学期UA生活的总结
在UA的前半学期,我总是在惊慌、忙乱中。这主要是因为我没有合理地安排时间!!!以下是经验总结:1.一定要根据schedule来计划自己的时间,尤其要看schedule上的分值分布2.课前要预习、课后要复习,教材和ppt一定要买到或者打印出来3.做事情要快,不要拖沓;做事情前要考虑周密..
分类:其他   时间:2014-12-23 06:42:53    收藏:0  评论:0  赞:0  阅读:246
云平台中的可用性集
在Azure当中有地缘组的概念(http://maomaostyle.blog.51cto.com/2220531/1585696),之前的博文也提到过,这是一种提高“性能”或者说是尽可能减少系统间延迟的手段,是出于性能保障的,那么从可用性角度而言,就要提到“可用性集(Availabilityset)”,Availabilityset是目前云平..
分类:其他   时间:2014-12-23 06:42:47    收藏:0  评论:0  赞:0  阅读:398
UA2015年第二学期的目标
两门课程得A过coreexam整理与规划英语听力与口语phpresearch寻找实习
分类:其他   时间:2014-12-23 06:42:33    收藏:0  评论:0  赞:0  阅读:285
杂事列表
Drivinglicense录音整理(整理成txt)Network视频学习Investmentunderuncertaintyec2php(网站)
分类:其他   时间:2014-12-23 06:42:23    收藏:0  评论:0  赞:0  阅读:230
leetcode 153: Majority Element
Given an array of size n, find the majority element. The majority element is the element that appears more than ? n/2 ? times. You may assume that the array is non-empty and the majority element alw...
分类:其他   时间:2014-12-23 06:40:53    收藏:0  评论:0  赞:0  阅读:291
LeetCode "Majority Element"
Really interesting O(n) problem. Just like playing.. so actually working on algorithm problems is like playing games!class Solution {public: int ma...
分类:其他   时间:2014-12-23 06:40:24    收藏:0  评论:0  赞:0  阅读:187
Leetcode: Majority Element
Given an array of size n, find the majority element. The majority element is the element that appears more than ? n/2 ? times.You may assume that the ...
分类:其他   时间:2014-12-23 06:40:14    收藏:0  评论:0  赞:0  阅读:120
Leetcode-Single Number
Given an array of integers, every element appears twice except for one. Find that single one.Analysis:Use XOR operation.Solution: 1 public class Solut...
分类:其他   时间:2014-12-23 06:40:03    收藏:0  评论:0  赞:0  阅读:235
Leetcode: Intersection of Two Linked Lists
Write a program to find the node at which the intersection of two singly linked lists begins.For example, the following two linked lists:A: a...
分类:其他   时间:2014-12-23 06:39:33    收藏:0  评论:0  赞:0  阅读:285
备忘:VC++ 中的异常处理
当程序遇到一个异常或一个严重的错误时,通常意味着它不能继续正常运行并且需要停止执行。任何的设计都离不开对异常与错误的处理。如果设计者不主动规避程序异常,往往在程序发生异常时,会被系统终止而直接退出。这对使用者来说,是很不友好的。如果主动处理异常,可以显式地提示错误地发生,也可以避免程序异常终止。更好...
分类:编程语言   时间:2014-12-23 06:39:23    收藏:0  评论:0  赞:0  阅读:352
java IO
有些HDOJ上的题目明明已经到O(n)算法了,比如1029题,时间复杂度已经最优了,但还是会TLE。主要原因是java的IO不够快。比如input是这样格式的:51 3 2 3 3111 1 1 1 1 5 5 5 5 5 571 1 1 1 1 1 1读每一组数据的时候,最好不要用sc.nextI...
分类:编程语言   时间:2014-12-23 06:38:53    收藏:0  评论:0  赞:0  阅读:135
加州大学伯克利分校Stat2.3x Inference 统计推断学习笔记: Section 5 Window to a Wider World
Stat2.3x Inference(统计推断)课程由加州大学伯克利分校(University of California, Berkeley)于2014年在edX平台讲授。PDF笔记下载(Academia.edu)SummaryChi-square testRandom sample or not...
分类:Windows开发   时间:2014-12-23 06:38:13    收藏:0  评论:0  赞:0  阅读:667
后端开发
语言: python服务器: apache数据库: mysqlandroid推送服务: socket编程
分类:其他   时间:2014-12-23 06:37:43    收藏:0  评论:0  赞:0  阅读:245
opcache运行时配置参数详解
测试帖:http://www.aikaiyuan.com/6430.html配置如下:opcache.memory_consumption=128opcache.interned_strings_buffer=8opcache.max_accelerated_files=4000opcache.re...
分类:系统服务   时间:2014-12-23 06:37:13    收藏:0  评论:0  赞:0  阅读:452
Install mcrypt for php on Mac OSX 10.10 Yosemite for a Development Server
mcryptis a file encryption method using secure techniques to exchange data. It is required for some web apps for exampleMagento, the shopping cart sof...
分类:Web开发   时间:2014-12-23 06:36:55    收藏:0  评论:0  赞:0  阅读:486
python27.chm 中文帮助
sphinx-build 生成的(htmlhelp) 存在2个问题1.生成的html 编码 cp2152,需要修改/sphinx/builders/html.py ctx['encoding'] = encoding = self.encoding ctx['encoding'] = e...
分类:编程语言   时间:2014-12-23 06:36:43    收藏:0  评论:0  赞:0  阅读:298
Python: Overriding the __new__ method 覆盖__new__方法
介绍Python的__new___及__init__的不同
分类:编程语言   时间:2014-12-23 02:39:16    收藏:0  评论:0  赞:0  阅读:454
1805条   上一页 1 ... 78 79 80 81 82 ... 91 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!