1234567对于Arrayif (array && array.count)
{}对于字符串Stringif (string && string.length && [string
isEqualToString:@""])
分类:
其他好文 时间:
2014-05-16 04:22:18
阅读次数:
249
SGMSettingConfig.h#import @interface
SGMSettingConfig : NSObject{ NSInteger HTTP_PACKAGE_SIZE; NSInteger
HTTP_RETRY_TIMES; NSInteger REPLY_LENGTH; ...
分类:
其他好文 时间:
2014-05-16 03:36:59
阅读次数:
373
class Solution {public: bool isScramble(string
s1, string s2) { int len = s1.length(); if (len == 1 && s1[0] == s2[0])
return true; ...
分类:
其他好文 时间:
2014-05-16 00:38:48
阅读次数:
317
if
(GetUploadFileContent.PostedFile.InputStream.Length < 1) { Msg.Text =
"请选择文件"; return; } string FileNam...
分类:
Web程序 时间:
2014-05-15 22:15:08
阅读次数:
348
在这里实现了带头结点的链表,包含插入,删除,查询,清空链表一系列功能#includeusing
namespace std;class LinkList{ char *elem; LinkList *next; static int
length;public: LinkList(char *e) ...
分类:
其他好文 时间:
2014-05-15 18:05:31
阅读次数:
271
Given a string, find the length of the longest
substring without repeating characters. For example, the longest substring
without repeating letters fo...
分类:
其他好文 时间:
2014-05-15 17:50:38
阅读次数:
298
1 public class SlectedSort 2 { 3 public static void
sort(int[] a) 4 { 5 int N = a.length; 6 for (int i = 0; i < N; i++) 7 ...
分类:
其他好文 时间:
2014-05-15 10:25:02
阅读次数:
142
1.结构体1>.NSRange(location, length);
从location这个位置开始计数长度为lengthNSRange的创建方式:NSRange r1 = {location, length}; // es:
NSRange r1 = {2, 4}; 一般不这样写NSRange r...
分类:
其他好文 时间:
2014-05-15 09:50:55
阅读次数:
246
【题目】
A sequence of N positive integers (10 N , each of them less than or equal 10000, and a positive integer S (S <
100 000 000) are given. Write a program to find the minimal length of the subse...
分类:
其他好文 时间:
2014-05-15 07:58:17
阅读次数:
329
算法原理:
第一趟:从j=0开始,比较相邻的两个数a[j]和a[j+1],如果a[j]>a[j+1],则交换他俩的位置,这样会将大的数放在后面。每比较一次让j++,当j=length-1时终止。
这样一趟走完,最后面的数应该是最大数。
那么第二趟,还是从0开始,只不过这次j的终止条件是j=length-2。第二趟走完,最后两个数应该是数组中最大的两个数并且有序排列。
重复若干趟,直到j的终...
分类:
其他好文 时间:
2014-05-15 07:56:49
阅读次数:
238