码迷,mamicode.com
首页 >  
搜索关键字:blue jeans    ( 1840个结果
leetcode Reverse Words in a String
将句子的词反转,例如:Given s = "the sky is blue",return "blue is sky the".思路:就是从后面往前,找到非空格的长度,然后取到另一个串中。遍历一次就可以了。如下:class Solution {public: void reverseWords...
分类:其他好文   时间:2014-12-18 10:11:34    阅读次数:148
Sort Colors
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the integers ...
分类:其他好文   时间:2014-12-17 21:03:38    阅读次数:202
python 输出彩色文字
直接上代码,写了一个选择双色球号码的小东西来显示字体颜色。pipinstallclint将以下代码复制,执行变可看到python在list与string转化,以及彩色文字的输出有多么方便了。#!/usr/bin/python importrandom importstring fromclint.textuiimportcolored red=[] blue=[] red_res=[..
分类:编程语言   时间:2014-12-17 18:49:31    阅读次数:356
获取AVCaptureSession samplebuffer 一像素的 rgb值
获取AVCaptureSession samplebuffer 一像素的 rgb值typedef unsigned char byte;typedef struct RGBPixel{ byte red, green, blue;} RGBPixel;- (void)captureOutput...
分类:其他好文   时间:2014-12-15 21:42:34    阅读次数:249
javascript Array类
Array类toString()方法和valueOf()方法,返回特殊的字符串。该字符串是通过对每项调用toString()方法,然后用逗号把它们连接在一起构成的。例如,对具有项"red"、"green"和"blue"的数组调用toString()方法或valueOf()方法,返回的是字符串"red...
分类:编程语言   时间:2014-12-15 18:52:33    阅读次数:200
IOS-设置NavigationBar的背景及字体颜色
在delegate中修改 //修改整体的navigationBar的背景颜色 [[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:46/255.0 green:186/255.0 blue:157/255...
分类:移动开发   时间:2014-12-15 18:38:34    阅读次数:751
设置VIM的配色方案
【转】Ubuntu的VIM的默认颜色难看死了,蓝色的注释基本上看不到。 查看有多少配色方案: $ls/usr/share/vim/vim72/colors 发现有以下文件 blue.vimdelek.vimevening.vimmurphy.vimREADME.txtslate.vim darkbl...
分类:系统相关   时间:2014-12-15 15:13:43    阅读次数:250
HDU3533:Escape(BFS)
Problem Description The students of the HEU are maneuvering for their military training. The red army and the blue army are at war today. The blue army finds that Little A is the spy of the red ar...
分类:其他好文   时间:2014-12-13 15:13:24    阅读次数:138
BZOJ 1567 JSOI 2008 Blue Mary的战役地图 二维hash
题目大意:给出两个m*m的地图,问两个地图的最大子正方形矩阵的边长是多大。 思路:先对两个矩阵hash,然后枚举最大长度,从大到小枚举。把第一个矩阵的所有情况插到哈希表中,然后查询第二个矩阵的所有情况。 记住哈希表中的那些数组一定要开大点。。 CODE: #include #include #include #include #define MAX 60 #de...
分类:Web程序   时间:2014-12-13 12:27:41    阅读次数:237
查看 Linux 相关系统信息
一、CPUlscpu命令,查看的是cpu的统计信息.blue@blue-pc:~$ lscpuArchitecture: i686 #cpu架构CPU op-mode(s): 32-bit, 64-bitByte Order: ...
分类:系统相关   时间:2014-12-10 16:09:36    阅读次数:240
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!