字符串比较原题链接:http://codeforces.com/problemset/problem/112/A【题目描述】给你两个字符串 a 和 b ,你需要比较它们在忽略大小写的情况下的字典序大小。忽略大小写的意思是:"abc" 和 "Abc" 在忽略大小写的情况下的字典序是相等的。在忽略大小写 ...
分类:
其他好文 时间:
2019-07-01 13:56:01
阅读次数:
132
指针数组指针数组是数组,指针数组每个元素是一个指针指针数组的定义:type* parray[n]; type* 是数组中每个元素的类型parray 为数组名n为大小 例子:float* a[3] //a是一个数组,每个元素的类型是float* code: ...
分类:
编程语言 时间:
2019-06-09 22:11:01
阅读次数:
100
实验结论 实现方式一:形参是数组,实参是数组名,使用数组元素直接访问 // 练习:使用二分查找,在一组有序元素中查找数据项 // 形参是数组,实参是数组名 #include <stdio.h> const int N=5; int binarySearch(int x[], int n, int i ...
分类:
其他好文 时间:
2019-05-26 16:10:04
阅读次数:
108
#include<stdio.h>#include<string.h>int main() { int x,y,t; char str1[100],str2[100]; printf("为str1赋值:"); scanf("%s",str1); printf("为str2赋值:"); gets(st ...
分类:
其他好文 时间:
2019-05-07 21:37:12
阅读次数:
144
#include #include void exec(char cmd[]) { int f = 0, i, l; l = strlen(cmd); for (i = 0; i "); i = 0; while ((c = getchar()) != '\n') { if (c != ';')..... ...
分类:
其他好文 时间:
2019-04-29 21:19:31
阅读次数:
120
主要是关于!=string::npos的用法和substr的用法 ...
分类:
其他好文 时间:
2019-04-20 00:19:01
阅读次数:
203
目录操作 创建和删除目录: 原型为: 获取目录信息: 原型为: 读取目录信息的步骤为: ? 用opendir函数打开目录; ? 使用readdir函数迭代读取目录的内容,如果已经读取到目录末尾,又想重新开始读,则可以使用rewinddir函数将文件指针重新定位到目录文件的起始位置; ? 用close ...
分类:
系统相关 时间:
2019-04-14 14:23:41
阅读次数:
382
An inorder binary tree traversal can be implemented in a non-recursive way with a stack. For example, suppose that when a 6-node binary tree (with the ...
分类:
其他好文 时间:
2019-04-08 13:41:11
阅读次数:
116
1.addslashes 将单引号,双引号,反斜线(\)与NUL(NULL字符)前面加上反斜线 2.htmlspecialchars 适合绝大多数HTML文档环境,默认不转义单引号 3.str_replace() 4.str_rot13 5.strcmp 但是在PHP版本5.3以后,如果传入的参数不 ...
分类:
Web程序 时间:
2019-04-07 09:47:06
阅读次数:
188
// // Source code recreated from a .class file by IntelliJ IDEA // (powered by Fernflower decompiler) // package com.thc.rcm.common.service; import co... ...
分类:
Web程序 时间:
2019-03-29 14:31:51
阅读次数:
136