码迷,mamicode.com
首页 > 其他好文
C 数字1、2、3、4用不全相等的数字组成的三位数及其个数
# include int main() { int i,j,k; int x=0,y=0,z=0; for(i=1;i { for(j=1;j { for(k=1;k { if(!(i==j&&j==k&&i==k)) //if(i!=j&&j!=k&&i!=k)注意这段代码的表示的意思! { printf("%d%d%d  ",i,j,k); x++; } ...
分类:其他好文   时间:2014-12-25 22:10:52    阅读次数:145
图像相似度计算之哈希值方法
图像相似度计算之哈希值方法!...
分类:其他好文   时间:2014-12-25 22:10:31    阅读次数:291
Partition List leetcode
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x. You should preserve the original relative order of the nodes in each of...
分类:其他好文   时间:2014-12-25 22:10:27    阅读次数:180
ZOJ3582---Back to the Past
Back to the Past Time Limit: 2 Seconds      Memory Limit: 65536 KB      Special Judge Recently poet Mr. po encountered a serious problem, rumor said some of his early poems are written by oth...
分类:其他好文   时间:2014-12-25 22:07:37    阅读次数:250
[LeetCode]Word Break
Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words. For example, given s = "leetcode", dict = ["leet"...
分类:其他好文   时间:2014-12-25 22:07:37    阅读次数:330
用户体验设计
用户体验设计...
分类:其他好文   时间:2014-12-25 22:07:27    阅读次数:156
HEVC—编码树结构
HEVC中有CU,TU,PU概念就不多说了,这里主要说一下在具体实现时他们之间大小的关系 在HEVC中 亮度 CU 最大为 64*64,最小为8*8    色度CU最大为 32*32,最小为4*4 在编码配置文档之中可以配置初始的LCU的大小也就是初始根节点CTU的大小 假设这里为64*64 在确定是否进行劈分的过程中利用一个CU_split_flag进行标识,同时结合四叉树的深度信息。获...
分类:其他好文   时间:2014-12-25 22:06:59    阅读次数:339
Merge Two Sorted Lists leetcode
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 题目意思为合并两个链表,不能用额外的空间(新链由两个链拼接而成) 思路: 比较简单,直接定义两个指针,分别...
分类:其他好文   时间:2014-12-25 22:09:16    阅读次数:186
高校平台之题型题库——不再“死”不再动态
高校平台集考试系统、权限系统、基础系统、评教系统、新生入学系统等,有幸参加其中之一的考试系统。在考试系统中存在这样一种情况,关于题库表怎么在数据库中存放的问题。        题库看着简单的两个字,却包含了很多,题库中包含很多题型,每个题型有很多题,就廊坊师范学院来说,到现在为止,经历过得题型就有28种,而且每年都有可能会新增很多题型,如果单纯只是将题型列举,怎么也列举不完,每个题型中有多少道题...
分类:其他好文   时间:2014-12-25 22:07:13    阅读次数:249
leetcode之倒转一句话单词
题目: Given an input string, reverse the string word by word. For example, Given s = "the sky is blue", return "blue is sky the". click to show clarification. Clarification: What co...
分类:其他好文   时间:2014-12-25 22:06:30    阅读次数:276
SICP1.3 MIT(CLT) Scheme实现(Lisp)
?? 题目要求给出的函数需要完成以下三件事: 写一个函数,接受三个数作为参数判断三个数中较大的两个数计算较大两个数的平方和(两个数的平方之和) 我们从后往前,一步步完成这三个任务。 CSDN没有Lisp。用Python的标记了 #lang racket ;;SICP 1.3 ;;try 1 (define (square x)(* x x)) (define (sum x y)(+...
分类:其他好文   时间:2014-12-25 22:07:19    阅读次数:177
Struts2的默认action配置真的是bug?
struts2的默认action真的是bug吗...
分类:其他好文   时间:2014-12-25 22:05:41    阅读次数:218
【转】指针函数与函数指针的区别
原文网址:http://www.cnblogs.com/gmh915/archive/2010/06/11/1756067.html一、在学习arm过程中发现这“指针函数”与“函数指针”容易搞错,所以今天,我自己想一次把它搞清楚,找了一些资料,首先它们之间的定义:1、指针函数是指带指针的函数,即本质...
分类:其他好文   时间:2014-12-25 22:07:05    阅读次数:240
程序员的圣诞节
u-boot-2014.10代码分析及移植说明鉴于没有妹纸可以陪,那就找件事打发时间吧,写到哪算哪。2014.10与2013.07的版本相比,代码上并没有跨越式的改变,但是编译方式上,却有了极大的改变,一种更为优越的编译体系Kbuild&Kconfig System终于被引入了u-boot中。Kbu...
分类:其他好文   时间:2014-12-25 22:06:43    阅读次数:192
input子系统 KeyPad-Touch上报数据格式与机制
-----------------------------------------------------------------------本文系本站原创,欢迎转载!转载请注明出处:http://blog.csdn.net/android_huber交流邮箱:dp.shao@gmail.com--...
分类:其他好文   时间:2014-12-25 22:05:32    阅读次数:285
安装Django报错的问题
cmd中在指定目录下进行 setup.py install报错:from setuptools import setup, find_packages ImportError: No module named set网上查解决方法写到:wget http://peak.telecommunity.c...
分类:其他好文   时间:2014-12-25 22:05:50    阅读次数:195
UIPanGestureRecognizer
http://blog.csdn.net/huifeidexin_1/article/details/8282035UIGestureRecognizer是一个定义基本手势的抽象类,具体什么手势,在以下子类中包含: 1、拍击UITapGestureRecognizer (任意次数的拍击) 2、向里或...
分类:其他好文   时间:2014-12-25 22:05:50    阅读次数:158
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!