1、用以说明生成工具(如MICROSOFT FRONTPAGE 4.0)等;
2、向搜索引擎说明你的网页的关键词; 3、告诉搜索引擎你的站点的主要内容; 4、告诉搜索引擎你的站点的制作的作者; 5、 其中的属性说明如下:
设定为ALL:文件将被检索,且页面上的链接可以被查询; 设定为N...
分类:
其他好文 时间:
2014-05-23 06:32:51
阅读次数:
314
用户没权限sudo:root登录,cd /etc/chmod u+w sudoersvi
/etc/sudoers添加 username ALL=(ALL) ALL , 保存退出chmod u-w sudoers---中文字体乱码:sudo
dpkg-reconfigure locales选择zh_...
分类:
系统相关 时间:
2014-05-23 04:05:00
阅读次数:
422
1 // 2 // LWTViewController.m 3 // 纯代码位移和伸缩作业 4 //
5 // Created by apple on 14-5-20. 6 // Copyright (c) 2014年 lwt. All rights
reserved. 7 ...
分类:
其他好文 时间:
2014-05-23 04:03:01
阅读次数:
467
Given a sorted linked list, delete all nodes
that have duplicate numbers, leaving onlydistinctnumbers from the original
list.For example,Given1->2->3-...
分类:
其他好文 时间:
2014-05-21 17:51:09
阅读次数:
190
1:使用SHOW语句找出在服务器上当前存在什么数据库: mysql SHOW DATABASES;
2:2、创建一个数据库MYSQLDATA mysql CREATE DATABASE MYSQLDATA; 3:选择你所创建的数据库 mysql USE
MYSQLDATA; (按回车键出现Datab...
分类:
数据库 时间:
2014-05-21 17:45:19
阅读次数:
247
【题目】
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.
Each number in C may only be used once in the combination.
Note:
All numbers (including target) will be ...
分类:
其他好文 时间:
2014-05-21 15:55:25
阅读次数:
259
【题目】
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.
The same repeated number may be chosen from C unlimited number of times.
Note:
All numbers (including target) w...
分类:
其他好文 时间:
2014-05-21 15:21:28
阅读次数:
292
构造函数:构造函数是一种特殊的成员函数
构造函数的特点:
1 构造函数的函数名和类名相同
2 构造函数没有返回值
3 构造函数用于初始化对象
通过一个实例说明构造函数的作用
#include
using namespace std;
class Time//时间类
{
public:
void set_time();//设置时间
void show_time();//...
分类:
其他好文 时间:
2014-05-21 14:38:17
阅读次数:
263
想做一些简单的文件操作,用java太重量级,python是一个不错的选择。有一个需求是将一个文件夹中所有的文件的内容提取出来分别填入excel的一个单元格中,用os就可以对文件进行遍历,读文件信息import
os# Get the all files & directories in the sp...
分类:
编程语言 时间:
2014-05-21 14:23:27
阅读次数:
405
原因:MinGW没有安装c编译器。
MinGW的安装管理器的"Basic Setup"栏目找不到c编译器:
在“All Packages”->"MSYS"->"MSYS System Builder"栏目中勾选"msys-gcc":...
分类:
Windows程序 时间:
2014-05-21 13:48:54
阅读次数:
1228