C语言学习
半日闲12138
这个作者很懒,什么都没留下…
展开
-
字符串转为整数计算
#include<stdio.h> #include<stdlib.h> int main(){ char sign = '+'; char addnum1[] = "1"; char addnum2[] = "2"; int res = 0; switch(sign) { case '+': ...原创 2019-12-10 16:01:16 · 232 阅读 · 0 评论 -
C语言调用另一个源文件里的函数
fuTest.c #include<stdio.h> void FuTest1(){ printf("%s", "test1"); } void FuTest2(){ printf("%s", "test2"); } void FuTest3(){ printf("%s", "test3"); ...原创 2019-11-20 17:57:52 · 799 阅读 · 0 评论 -
缺失数字(力扣)
加一个开关(true false) int missingNumber(int* nums, int numsSize){ for(int i=0; i<=numsSize; i++) { bool a = true; for(int j=0; j<numsSize; j++) { if(i ==...原创 2019-11-15 14:40:12 · 199 阅读 · 0 评论 -
字符串匹配算法(KMP算法)
力扣 实现 strStr() 函数。 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回 -1。 int strStr(char * haystack, char * needle){ int i = 0; int j = 0; int h_le...原创 2019-10-17 17:50:37 · 181 阅读 · 0 评论 -
整数转换为字符串(附上力扣代码)
#include<stdio.h> #include<stdlib.h> #pragma warning(disable: 4996) int main() { int number = 1234; char string[12] = { 0 }; itoa(number, string, 10); printf("Num:%d; Str:%s\n", numb...原创 2019-10-08 17:35:22 · 413 阅读 · 0 评论