原题地址isalnum:判断是否是字符或数字toupper:将字符转换成大写,非字符不变代码: 1 bool isPalindrome(string s) { 2 string news; 3 for (auto c : s) 4 if (is...
分类:
其他好文 时间:
2015-02-02 17:20:32
阅读次数:
137
操作界面这个小系统一共包含4个脚本sh功能备注oneKey.sh主程序,调用其他程序,对外提供功能menu.sh勾画菜单function.sh提供操作数据库接口valid.sh操作mysql数据库,验证数据menu.sh画字符菜单#!/bin/bash
functionprint_main_menu(){
cat<<EOF
#######################..
分类:
数据库 时间:
2015-02-02 16:07:43
阅读次数:
329
源端:Oracle 11.1.0.7
目标端:Oracle 11.2.0.4
最近做的一个数据迁移的CASE中遇到的问题,一个VIEW在完成数据迁移后由VALID的状态变为了INVALID。
从源库中使用get_ddl拿到的该VIEW创建语句如下:
CREATE OR REPLACE FORCE VIEW "APPS"."IGW_BUDGET_CATEGORY_V1" ("PROPOSAL...
分类:
数据库 时间:
2015-02-02 15:59:54
阅读次数:
236
Given a string containing just the characters'('and')', find the length of the longest valid (well-formed) parentheses substring.For"(()", the longest...
分类:
其他好文 时间:
2015-02-02 14:03:33
阅读次数:
101
Evaluate the value of an arithmetic expression inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may be an integer or another express...
分类:
其他好文 时间:
2015-02-01 16:04:04
阅读次数:
125
Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the correct ...
分类:
其他好文 时间:
2015-02-01 13:29:34
阅读次数:
148
# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com'32: Longest Valid Parentheseshttps://oj.leetcode.com/problems/longest-valid-parentheses/Gi...
分类:
编程语言 时间:
2015-02-01 01:52:20
阅读次数:
319
armv6
iPhone
iPhone2
iPhone3G
第一代和第二代iPod Touch
armv7
iPhone4
iPhone4S
armv7s
iPhone5
iPhone5C
arm64
iPhone5S
Architecture : 指你想支持的指令集。
Valid ...
分类:
其他好文 时间:
2015-01-31 16:19:41
阅读次数:
200
1:首先进行Organizer,Provisioning file里所有显示为黄色感叹号的文件删掉。(设备里provisioning file也同样操作,在Organizer内也可完成)
2:打开Keychain Access (钥匙串访问),‘菜单栏’ -> '钥匙串设访问' -> '证书助理' -> "从证书颁发机构申请证书",选择“存储到磁盘”,输入必要信息
...
分类:
其他好文 时间:
2015-01-31 12:50:11
阅读次数:
136
题目链接:Valid Parentheses
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
The brackets must close in the correct order, "()" and "...
分类:
其他好文 时间:
2015-01-30 22:40:16
阅读次数:
227