码迷,mamicode.com
首页 >  
搜索关键字:transformation    ( 463个结果
CodeForces 486C Palindrome Transformation(贪心)
CodeForces 486C Palindrome Transformation(贪心) CodeForces 486C 题目大意:  将一个不是回文的字符串通过最少的操作使之成为回文串。  操作,左移1位,右移1位,字母+1,字母-1,这些操作到达边界时是有循环的效果的,例如位置到达最后一位往右移动,那么就到达了第一位。 解题思路:  首先需要统计一下有多少个位置是不匹...
分类:其他好文   时间:2015-06-05 12:29:47    阅读次数:192
OpenGL——3D Rendering Pipeline
1 // Computer Graphics: HW3 2 // 3D Transformation: 3 4 5 #include 6 #include 7 #include 8 #include 9 #include 10 #include 11 #incl...
分类:其他好文   时间:2015-06-03 21:18:58    阅读次数:126
[LeetCode] Subsets
Well, this problem becomes fairly easy once we use theitertoolspackage of Python. It is just a transformation of the type of the result. And other thi...
分类:其他好文   时间:2015-06-03 00:51:30    阅读次数:119
你必须懂的 T4 模板:深入浅出
=============C#.Net 篇目录==============示例代码:示例代码__你必须懂的T4模板:浅入深出.rar(一)什么是T4模板?T4,即4个T开头的英文字母组合:Text Template Transformation Toolkit。T4文本模板,即一种自定义规则的代码生...
分类:其他好文   时间:2015-05-31 07:58:08    阅读次数:513
Java for LeetCode 127 Word Ladder
Given two words (beginWord and endWord), and a dictionary, find the length of shortest transformation sequence from beginWord to endWord, such that:On...
分类:编程语言   时间:2015-05-27 12:11:24    阅读次数:479
Java for LeetCode 126 Word Ladder II
Given two words (start and end), and a dictionary, find all shortest transformation sequence(s) from start to end, such that: Only one letter can be c...
分类:编程语言   时间:2015-05-27 11:36:20    阅读次数:202
Neo4j:Data Model Transformation:From Relation To Graph
Here are some tips that help you with the transformation:Each entity table is represented by a label on nodesEach row in a entity table is a nodeColum...
分类:其他好文   时间:2015-05-23 12:54:42    阅读次数:89
OpenGL多边形变换和裁剪
1 // Computer Graphics: HW2 2 // 3D Rendering pipeline: 3 // Space Transformation and Polygon clipping use Sutherland-Hodgman Algorithm 4 5 ...
分类:其他好文   时间:2015-05-22 23:50:04    阅读次数:316
关于GBK、GB2312、UTF8之间的区别
UTF-8:Unicode Transformation Format-8bit,允许含BOM,但通常不含BOM。是用以解决国际上字符的一种多字节编码,它对英文使用8位(即一个字节),中文使用24为(三个字节)来编码。UTF-8包含全世界所有国家需要用到的字符,是国际编码,通用性强。UTF-8编.....
分类:其他好文   时间:2015-05-22 21:01:27    阅读次数:99
hdu4952Number Transformation
// 给你一个数,有k次操作,第i+1次操作得到的数,得到最小的大于第i次操作的数是i+1的倍数 //将第i个数拆分为i*x, 那么(i+1)*x' >= i*x //得到x' >= x - x/(i+1)  //由式子可得到当x小于(i+1)后不变 //复杂度为x的开方 #include #include #include using namespace std ; typed...
分类:其他好文   时间:2015-05-20 22:24:59    阅读次数:141
463条   上一页 1 ... 34 35 36 37 38 ... 47 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!