编译环境:vs2015
实现100以内完全平方数的哈希表建立,当然更多数也是可以的……基本是例题难度,写了好大一天。
定义结构体:
主要实现函数:
// ConsoleApplication5.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
//
// main.c
// t12_23-c
//
// Created by 04 on 16/12/22.
// Copyright 2016年 feng. All rights reserved.
//
#include <stdio.h>
#include<stdlib.h>
#include <math.h>
struct ListNode;
typedef struct ListNode *Posi