#include <iostream>
using namespace std;
struct HuffNode
{
float weight;
int parent;
int lchild;
int rchild;
};
//实现哈夫曼编码, 返回根节点
......................
阅读全部 | 2020年6月6日 22:34
#include <stdio.h>
float func(int n, int x)
{
float fn;
if (n == 0) return 1;
if (n == 1) return x;
fn = (float)n;
return ((2 * fn - 1) * x * func(n - 1, x) - (fn - 1) * func(n - 2, x)) / fn;
}
int main()
{
......................
阅读全部 | 2020年6月6日 21:15
#include <iostream>
#include <algorithm>
using namespace std;
void showarray(int a[], int c, int d)
{
for (int i = 0; i < c; ++i)
cout << a[i] << ' ';
cout << endl;
}
//对a[low]到a[high]由小到大排序
bool QuickSort(int a[], int count, int teamIdx)
{
......................
阅读全部 | 2020年6月6日 19:43
#include <iostream>
#include <algorithm>
using namespace std;
void showarray(int a[], int c, int d)
{
for (int i = 0; i < c; ++i)
cout << a[i] << ' ';
cout << endl;
}
//对a[low]到a[high]由小到大排序
bool QuickSort(int a[], int count, int teamIdx)
{
......................
阅读全部 | 2020年6月6日 19:41
//---1.
#include "stdio.h"
int mystrlen(char *s)
{
int n = 0;
while (*s++) ++n;
return n;
}
int main()
{
int i;
int inCount = 0;
......................
阅读全部 | 2020年6月6日 18:32
// 1.
#include "stdio.h"
int mystrlen(char *s)
{
int n = 0;
while (*s++) ++n;
return n;
}
int main1()
{
int i;
int inCount = 0;
......................
阅读全部 | 2020年6月6日 18:25
// 1. 四舍五入
#include "stdio.h"
int main()
{
float fd;
scanf("%f", &fd);
int id = (int)(fd + 0.5f);
printf("%f 四舍五入 = %d", fd, id);
return 0;
}
......................
阅读全部 | 2020年6月6日 16:50
#include "stdio.h"
int main()
{
char ss[32], res[32] = {};
gets(ss);
int a = 0, b = 0;
char* p = ss;
for (; *p; ++p){
if (*p == ' '){ ++p; break; }
a = (a << 1) | (*p - '0');
}
......................
阅读全部 | 2020年6月6日 13:51
#include "stdio.h"
int main()
{
char ss[32], res[32] = {};
gets(ss);
int a = 0, b=0;
char* p = ss;
for (; *p; ++p){
if (*p == ' '){ ++p; break; }
a = (a << 1) | (*p - '0');
}
......................
阅读全部 | 2020年6月6日 13:31
#include "stdio.h"
int main()
{
int a;
scanf("%d", &a);
if (((a % 3) == 0) && ((a % 7) == 0)){
printf("%d: 可以整除\n",a);
}
else{
printf("%d: 不可以整除\n", a);
}
......................
阅读全部 | 2020年6月6日 11:08