用递归实现字符数组的反转比如 char a[10] = {''a', 'b', 'c'};用递归实现后打印为 ‘c’, 'b', 'a'代码实现:#include#includevoid reve
题目一[周期串问题]如果一个字符串可以由某个长度为k的字符串重复多次得到,我们说该串以k为周期。例如,abcabcabcabc以3为周期(注意,它也可以6和12为周期,结果取最小周期3)代码如下:#include<string>#include<iostream>using namespace std;int GetMinPeriod(char* string) {
题目: 求数组里面的最大值和最小值 比如:数组 1,2,3,4,5 最大值是5,最小值是1 代码实现:#include <stdio.h>int max,min;void getMaxAndMin(int a[],int n){ int *q; q=a; max=min=*a; for(q;q<a+n;q++){
求三角形max周长public class 求三角形max周长 {public static void main(String[] args) { /** * 有n个棍子 每个棍子的长度是a[i] * 3<=n<=100; * 1<=a[i]<=100; */System.out.println(
The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2)
题目:题目一[周期串问题]如果一个字符串可以由某个长度为k的
用递归实现字符数组的反转比如 char a[10] = {''a', 'b', 'c'};用递归实现后打印为 ‘c’, 'b', 'a'代码实现:#include#includevoid reverse(int length, char a[]);int main(){ char a[10] = {'a', 'b', 'c', 'd', 'e'}; int
求三角形max周长public class 求三角形max周长 {public static void main(String[] args) { /** * 有n个棍子 每个棍子的长度是a[i] * 3<=n<=100; * 1<=a[i]<=100; */System.out.println("请输入
题目:求数组里面的最大值和最小值比如:数组 1,2,3,4,5最大值是5,最小值是1代码实现:#include int max,min;void getMaxAndMin(int a[],int n){ int *q; q=a; max=min=*a; for(q;q<a+n;q++){ if(*q>max){ max=
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号