在Red Hat Enterprise Linux Server release 5.7 上用源码安装MySQL-5.6.23时,遇到了" remove CMakeCache.txt and rerun cmake.On Debian/Ubuntu, package name is libncurs...
分类:
数据库 时间:
2015-03-14 12:22:16
阅读次数:
244
sort3解题报告—— icedream61 博客园(转载请注明出处)--------------------------------------------------------------------------------------------------------------...
分类:
其他好文 时间:
2015-03-14 10:55:56
阅读次数:
119
1.Linux系统与其他的操作系统不同,它设有运行级别。该运行级指定操作系统所处的状态。Linux系统在任何时候都运行于某个运行级上,且在不同的运行级上运行的程序和服务都不同,所要完成的工作和所要达到的目的也都不同。
2.Linux(Red Hat 9.0)设置了7个不同的运行级,系统可以在这些运行级别之间进行切换以完成不同的工作。
3.接下来简单介绍7个系统运行级:
(1)...
分类:
系统相关 时间:
2015-03-14 06:16:04
阅读次数:
240
1.安装1.1.安装环境查看当前操作系统版本:[root@vmw9181-app ~]# cat /etc/issueRed Hat Enterprise Linux Server release 5.3 (Tikanga)1.2.安装openldap-*包使用yum源安装openldap包[roo...
分类:
其他好文 时间:
2015-03-11 17:04:52
阅读次数:
231
这场考试当年还参加了,当时直接用内置的排序了,否则自己写归并排序浪费时间啊,现在来练习一发。估计又有些节点没在链表里面,当时没考虑这个情况,所以一直有些case没过#include #include #include #include using namespace std;class Node {...
分类:
其他好文 时间:
2015-03-10 13:56:37
阅读次数:
153
声明:翻译官方文档:http://docs.mongodb.org/master/tutorial/install-mongodb-on-red-hat/?_ga=1.146202678.362433698.1425911361概述: 通过该教程学会在RHEL或centos下安装mongodb的.....
分类:
数据库 时间:
2015-03-10 00:03:55
阅读次数:
202
#include#include#includeusing namespace std;struct node{ int address; int data; int next; bool tag;}Node[100066];bool cmp(node a,node b){ if(a.ta...
分类:
其他好文 时间:
2015-03-07 18:25:51
阅读次数:
132
1、RHEL 6 集群配置官方管理手册https://access.redhat.com/site/documentation/zh-CN/Red_Hat_Enterprise_Linux/6/pdf/Cluster_Administration/Red_Hat_Enterprise_Linux-6...
分类:
其他好文 时间:
2015-03-07 15:29:13
阅读次数:
221
题目大意:给你一个只有1 2 3 的序列,要你排序,每次可以交换任意两个元素,问最小交换次数是多少思路:贪心,先排1 ,如果1已经在位置上了,那就不要动了,如果是2那就和最前面的1交换,如果是3,那就和后面的1交换 1 /*{ 2 ID:a4298442 3 PROB:sort3 4 LANG:C+...
分类:
其他好文 时间:
2015-03-07 13:51:39
阅读次数:
109
DescriptionIn this problem, you have to analyze a particular sorting algorithm. The algorithm processes a sequence of n distinct integers by swapping ...
分类:
编程语言 时间:
2015-03-07 09:03:43
阅读次数:
160