力扣-算法简单题
力扣-算法简单题
Soaring丶
这个作者很懒,什么都没留下…
展开
-
罗马数字转整数(c语言)
https://leetcode-cn.com/problems/roman-to-integer/ #include<stdio.h> #include<string.h> int romanToInt(char * s){ int num = 0; int tem = 0; int cmp = 0; for(int i = 0;*(s+i)!='\0';i++){ cmp = tem; switch(s[i]){原创 2021-12-22 17:58:09 · 978 阅读 · 0 评论 -
回文整数判断(C语言)
https://leetcode-cn.com/problems/palindrome-number/ #include<stdio.h> #include<stdbool.h> bool isPalindrome(int x){ int len = 1; int xx= x; int num1 = 1; int num2 = 1; if(x < 0){ return false; } while(xx原创 2021-12-22 16:49:11 · 732 阅读 · 0 评论 -
删除排序数组中的重复项(c语言实现)
删除排序数组中的重复项 #include<stdio.h> int len_g; int set(int *arr){ int len=0; for(int i = 0;i<len_g;i++){ for(int j = i+1;j<len_g;j++){ if(arr[i]<arr[j]){ arr[i+1] = arr[j]; break;原创 2021-12-14 23:20:22 · 1292 阅读 · 0 评论