摘要: //本书代码来思想自于创客诚品的>//但我对原书代码做了较大的改动;// 个人认为算法与数据结构是一个程序员的内功,欲成为第一流的高手必须苦练内功// 欲研究数据结构,必须写C#include#include#define N 10//定义一个结构体,这里有... 阅读全文
posted @ 2018-08-03 17:56 luoganttcc 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 三体下载将下载的文件重命名为santi.txt,放在文件的目录下#!/usr/bin/env python3# -*- coding: utf-8 -*-"""Created on Wed Aug 1 18:31:11 2018@author: luoga... 阅读全文
posted @ 2018-08-01 18:44 luoganttcc 阅读(2108) 评论(0) 推荐(0) 编辑
摘要: 三体链接下载三体文件,将其从命名为santi.txt 将其放在程序的统一目录下#!/usr/bin/env python3# -*- coding: utf-8 -*-"""Created on Wed Aug 1 10:13:28 2018@author... 阅读全文
posted @ 2018-08-01 15:34 luoganttcc 阅读(210) 评论(0) 推荐(0) 编辑
摘要: f=open("foo.txt")for line in f: print (line)f = open("data.txt","r") #设置文件对象st= f.read() #将txt文件的所有内容读入到字符串str中f.close()... 阅读全文
posted @ 2018-08-01 15:05 luoganttcc 阅读(124) 评论(0) 推荐(0) 编辑
摘要: import jiebaimport pandas as pdtxt = open("hlm.txt", "r", encoding="gb18030").read()from gensim.models.word2vec import Word2Vec s... 阅读全文
posted @ 2018-07-31 22:59 luoganttcc 阅读(152) 评论(0) 推荐(0) 编辑
摘要: from gensim.test.utils import common_texts, get_tmpfilefrom gensim.models import Word2Vecpath = get_tmpfile("word2vec.model")mode... 阅读全文
posted @ 2018-07-31 22:58 luoganttcc 阅读(145) 评论(0) 推荐(0) 编辑
摘要: /* 包含的头文件 */ #include #include /* 定义一个表示链表的结构体指针 */ struct list { int id; /* 标识这个元素方便查找 */ ... 阅读全文
posted @ 2018-07-29 20:59 luoganttcc 阅读(269) 评论(0) 推荐(0) 编辑
摘要: #includetypedef struct Student //声明结构体类型 struct Student { int num; float score; struct St... 阅读全文
posted @ 2018-07-29 15:06 luoganttcc 阅读(108) 评论(0) 推荐(0) 编辑
摘要: #includeint main() { int *p1,*p2,*p,a,b; printf("please enter two integer numbers"); scanf("%d,%d",&a,&b); p1=&a; ... 阅读全文
posted @ 2018-07-28 22:35 luoganttcc 阅读(68) 评论(0) 推荐(0) 编辑
摘要: redis 安装完成后,以下代码可以直接运行#!/usr/bin/env python3# -*- coding: utf-8 -*-"""Created on Wed Sep 5 16:08:51 2018@author: luogan"""impor... 阅读全文
posted @ 2018-07-28 13:06 luoganttcc 阅读(356) 评论(0) 推荐(0) 编辑