#includeint main(){ int num,a[100],i,j,b[100]; while(scanf("%d",&num)!=EOF) { int s1=0,s2=0; for(i=0;i<num;i++) { scanf("%d",&a[i]); } for(i...
分类:
其他好文 时间:
2014-10-21 07:47:35
阅读次数:
128
在向大家具体介绍Oracle Hints之前,首先让大家了解下Oracle Hints是什么,然后全面介绍Oracle Hints,希望对大家实用。基于代价的优化器是非常聪明的,在绝大多数情况下它会选择正确的优化器,减轻了DBA的负担。但有时它也聪明反被聪明误,选择了非常差的运行计划,使某个语句的运...
分类:
数据库 时间:
2014-10-20 13:02:35
阅读次数:
240
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:
其他好文 时间:
2014-10-17 20:22:17
阅读次数:
220
Problem:Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindr...
分类:
其他好文 时间:
2014-10-13 12:18:49
阅读次数:
100
Determine whether an integer is a palindrome. Do this without extra space.Some hints:Could negative integers be palindromes? (ie, -1)If you are thinki...
分类:
其他好文 时间:
2014-10-07 19:09:53
阅读次数:
180
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:
其他好文 时间:
2014-09-11 20:53:22
阅读次数:
247
题目原文:
Determine whether an integer is a palindrome. Do this without extra space.
click to show spoilers.
Some hints:
Could negative integers be palindromes? (ie, -1)
If you are thinking of conv...
分类:
其他好文 时间:
2014-09-09 13:04:18
阅读次数:
156
题意 猜数字游戏 统计猜的数字有多少个数字位置正确 有多少个数字在答案中出现但是位置不正确 每个字符只能匹配一次
直接匹配每位数
#include
#include
#include
using namespace std;
const int N = 1005;
int a[N], b[N], c, d;
int main()
{...
分类:
其他好文 时间:
2014-08-31 10:33:41
阅读次数:
170
/**
* UDP,协议无关,调用 getaddrinfo 和 udp_client
**/
#include "unp.h"
int
udp_client(const char *host, const char *serv, SA **saptr, socklen_t *lenp)
{
int sockfd, n;
struct addrinfo hints, *res, *ressave;
//1.调用 getaddrinfo
//协议地址族为 AF_UNSPEC ,套接字类型为...
分类:
其他好文 时间:
2014-08-24 23:57:03
阅读次数:
601