- 博客(11)
- 资源 (12)
- 收藏
- 关注
原创 Linux系统(一)文件系统、压缩、打包操作总结
Linux系统(一)文件系统、压缩、打包操作总结转自:https://www.cnblogs.com/knowledgesea/p/6146303.html仅供本人个人学习。
2020-07-31 09:15:23
156
转载 contenttype 为application/x-www-form-urlencoded 和 application/json 区别和说明
contenttype 为application/x-www-form-urlencoded 和 application/json 区别和说明说明:这两个都是发送请求的格式说明转自:https://www.cnblogs.com/qlhMeiMei/p/6846392.html 1.application/x-www-form-urlencoded 在Form元素的语法中,...
2018-11-06 14:24:40
1194
原创 c和指针实操:查找所有 在一个给定字符集合中出现的字符(c语言)
/***********************************************************************************请编写一个函数,它在一个字符串中进行搜索,查找所有在一个给定字符集合中出现的字符。它的基本想法是查找source字符串中匹配chars字符的第一个字符,函数然后返回一个指向source中第一个匹配所找到的位置的指针。如果...
2018-10-11 16:00:07
534
原创 计算单词的个数_华为So挑战赛2015年8月份
#include #include using namespace std; int Getlen(int *array, int size){ int j =0,cnt =0; while(j<size) { if (array[j++] >=0) { ++cnt; } } return cnt;}int main(){ string str;
2015-09-04 15:42:47
600
原创 拼音翻译成阿拉伯数字_华为SO挑战赛2015年8月
#include #include using namespace std; void filter(string str) { //各字符串的下标即为其对应的阿拉伯数字 char *ch[]={"Ling","Yi","Er","San","Si","Wu","Liu","Qi","Ba","Jiu"}; int a=0;//存储数字 int i,j=1,k
2015-09-04 10:18:51
453
原创 完美数字_华为SO挑战赛2015年8月
#includeusing namespace std;int main(){ int small,big; cin>>small>>big; int MinPerfectNum = 30;//2*3*5 int PerfectNum = 30; int NumOfPerfectNum = 0; for(; PerfectNum >= small && Perf
2015-09-02 12:20:45
647
原创 字符串识别和过滤_华为SO挑战赛初赛试题2015年8月
#include#include #include using namespace std;int main(){ int n; int ouputNum; char str[50]; char ch; char output[50]; string line; cin>>line; n= line[0]; for(int i = 2; i
2015-09-02 10:50:33
704
转载 中兴2016机试题目
转自:http://blog.youkuaiyun.com/dandelion1314/article/details/47009585招聘群里有人发的招聘时间安排,仅供参考。 据说今年是中兴的第一次在线笔试,摄像头监控,chrome浏览器,80分钟,56道题,题型分为单选(20道),多选(20道),判断(10道),简答(4道),应用题(2道)。投的软件开发,但是笔试题以计算机网络题居多
2015-09-01 21:16:15
2210
原创 计算重复字符个数_华为SO挑战赛试题2015年8月
#include#include using namespace std;int main(){string str;cin>>str;int len = str.size();int NumOfChar;for (int i =0; i{NumOfChar = 1;int j = i+1;if (j {while( j{
2015-09-01 12:41:44
431
原创 进制转换,16到10,10进制到12进制_华为SO挑战赛试题2015年8月
描述写出一个程序,接受一个十六进制的数值字符串,输出该数值的十进制字符串。知识点字符串,循环,函数,指针运行时间限制10M内存限制128输入输入一个十六进制的数值字符串。输出输出该数值的十进制字符串。样例输入0xA
2015-09-01 11:56:48
857
1
转载 多线程
输入一个单向链表,输出该链表中倒数第k个结点,链表的倒数第0个结点为链表的尾指针。链表结点定义如下:struct ListNode{ int m_nKey; ListNode* m_pNext;};详细描述:接口说明原型:ListNode* FindKthToTail(ListNode*
2015-08-01 16:53:25
291
OpenGL超级宝典完整源码(第五版)
2015-11-12
OpenGL编程指南_pdf(原书第7版)中文扫描版
2015-11-12
深入理解计算机系统(中文第二版)_扫描版_14M.pdf
2015-10-18
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人