Tiny656

我不会轻易流泪,直到我的梦想成为现实,我再将所有的辛苦和泪水抛洒。

2015年5月2日 #

LightOJ Beginners Problems 部分题解

摘要: 相关代码请戳 https://coding.net/u/tiny656/p/LightOJ/git 1006 Hex-a-bonacci. 用数组模拟记录结果,注意取模 1008 Fibsieve's Fantabulous Birthday. 找规律题,左边列是1 3平方 5平方......下边行是1 2平方 4平方......,找到当前数被包夹的位置,然后处理一下位置关系,注意奇偶。 1... 阅读全文

posted @ 2015-05-02 11:17 Tiny656 阅读(308) 评论(0) 推荐(0) 编辑

2014年11月19日 #

异或链表(XOR linked list)

摘要: 异或链表(Xor Linked List)也是一种链式存储结构,它可以降低空间复杂度达到和双向链表一样目的,任何一个节点可以方便的访问它的前驱节点和后继结点。可以参阅wiki 普通的双向链表 class Node { public: int data; Node *prev; Node *next; }; class BiLinkedList { publi... 阅读全文

posted @ 2014-11-19 19:16 Tiny656 阅读(2496) 评论(0) 推荐(0) 编辑

2014年11月9日 #

Mini projects #8–RiceRocks

摘要: 课程全名:An Introduction to Interactive Programming in Python,来自 Rice University 授课教授:Joe Warren, Scott Rixner, John Greiner, Stephen Wong 工具:http://www... 阅读全文

posted @ 2014-11-09 23:26 Tiny656 阅读(524) 评论(0) 推荐(0) 编辑

2014年11月6日 #

Mini projects #7 ---- Spaceship

摘要: 课程全名:An Introduction to Interactive Programming in Python,来自 Rice University 授课教授:Joe Warren, Scott Rixner, John Greiner, Stephen Wong 工具:http://www.codeskulptor.org/, simplegui 模块 最后两周就要结束了~~~ ... 阅读全文

posted @ 2014-11-06 20:50 Tiny656 阅读(732) 评论(0) 推荐(0) 编辑

Catia CAA 二次开发 ---- 开发准备(0)

摘要: 去年开始学习Catia CAA的二次开发,前后的间断性学习有1年吧。 现在已经好久没用,忘得也差不多了,原来的笔记都放在了Evernote,现在还是觉得边继续复习边总结一下,以后也比较好检索。 先吐槽catia caa的二次开发,自身背景是只会点C++编程,机械相关一窍不通,当时看二次开发的那1个月... 阅读全文

posted @ 2014-11-06 14:06 Tiny656 阅读(5791) 评论(0) 推荐(0) 编辑

2014年10月30日 #

Mini projects #6 ---- Blackjack

摘要: 课程全名:An Introduction to Interactive Programming in Python,来自 Rice University 授课教授:Joe Warren, Scott Rixner, John Greiner, Stephen Wong 工具:http://www.c... 阅读全文

posted @ 2014-10-30 18:52 Tiny656 阅读(972) 评论(0) 推荐(0) 编辑

2014年10月21日 #

Mini projects #5 ---- Memory

摘要: 课程全名:An Introduction to Interactive Programming in Python,来自 Rice University 授课教授:Joe Warren, Scott Rixner, John Greiner, Stephen Wong 工具:http://www... 阅读全文

posted @ 2014-10-21 10:19 Tiny656 阅读(331) 评论(0) 推荐(0) 编辑

2014年10月17日 #

Mini projects #4 ---- Pong

摘要: 课程全名:An Introduction to Interactive Programming in Python,来自 Rice University 授课教授:Joe Warren, Scott Rixner, John Greiner, Stephen Wong 工具:http://www... 阅读全文

posted @ 2014-10-17 09:48 Tiny656 阅读(572) 评论(0) 推荐(0) 编辑

2014年10月16日 #

Mini projects #3 ---- Stopwatch: The Game

摘要: 课程全名:An Introduction to Interactive Programming in Python,来自 Rice University 授课教授:Joe Warren, Scott Rixner, John Greiner, Stephen Wong 工具:http://www.c... 阅读全文

posted @ 2014-10-16 17:41 Tiny656 阅读(496) 评论(0) 推荐(0) 编辑

2014年9月25日 #

【DP】组合数字

摘要: Password Attacker 题意就是给 M 个关键字,组合成 N 字符长度的结果,每一个关键字都必须在 N 位的字符中出现,有多少种可能结果。 范围 1 ≤ M ≤ N ≤ 100. 举例假设 M = 3(key = 3, 7, 5) N = 4 位字符长度 结果可以为3577, 3557... 阅读全文

posted @ 2014-09-25 10:48 Tiny656 阅读(363) 评论(0) 推荐(0) 编辑

导航