srsLTE源码学习:安全证书polarssl

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/89109789 Table of Contents liblte_ssl.h liblte_ssl.h lib\include\srslte\common 2
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:日志类log,logger,

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/89110623 Table of Contents log.h lib\include\srslte\common 4658 2/28/2019 53 log
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:MAC层抓包pcap

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/89111330 Table of Contents pcap.h lib\include\srslte\common 13945 2/28/2019 182
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

linux timerfd系列函数总结:timerfd.h

Table of Contents 一、timerfd系列函数 (1)timerfd_create()函数 (2)timerfd_settime()函数 (3)timerfd_gettime()函数 (4)下面贴出一个timerfd配合epoll函数的简单例子 参考资料: 网上关于timerfd的文章很多,在这儿归纳总结一下方便以后使用,顺便贴出一个timerfd配合epoll使用的简单例子 一、timerfd系列函数   timerfd是Linux为用户程序提供的一个定时器接口。这个接口基于
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:绑核创建线程threads.h, threads.c

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/89195281 Table of Contents threads.h lib\include\srslte\common 4228 4/10/2019 83
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:度量中心:metrics_hub.h

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/89196572 Table of Contents metrics_hub.h PS:《srsLTE源码学习:绑核创建线程threads.h, threads
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:网络附属存储抓包nas_pcap.h

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/89196788 Table of Contents nas_pcap.h lib\include\srslte\common 667 4/10/2019 1
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

引用与(一级)指针

/* 测试环境:windows XP 32位 Visual C++ 6.0 2017/2/23 反汇编比较:引用与一级指针反汇编代码完全相同,包括this指针的传递同样是使用ecx。 都使用了间接寻址方式。 printf("%d",x); 004010AD mov eax,dword ptr [ebp-4] 004010B0 mov ecx,dword ptr [eax] //利用eax间接寻址,将x存入ecx 004010B2 push ecx 004010B3 push offset st
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

数组越界导致死循环

#include<stdio.h> int main() { int i,arr[5]; for(i=0;i<=5;i++) { arr[i]=0; } return 0; } 代码中i与arr[5]占用同一个地址空间,导致每次运行到arr[5]=0时,将i重新赋值为0,即i恒小于等于5,无法跳出循环。 注意数组arr[5]已经越界。
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

职工学历管理系统

#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct { char gonghao[20];//工号 char mingzi[20];//姓名 char xingbie[10];//性别 char xueli[20]; int time[2];//生日 char zhicheng[20];//职称 float gongzi;//工资 }ZG; ZG zg[100]; int N=0;
分类: 其他 发布时间: 04-10 22:30 阅读次数: 0

srsLTE源码学习:抓包pcap.h(packet capture)

版权声明:This article is a blogger original article, only for study reference, reprint please indicate the source, thank you! https://blog.csdn.net/Rong_Toa/article/details/89196985 Table of Contents pcap.h packet capture pcap.h lib\include\srslte\commo
分类: 编程语言 发布时间: 04-10 22:30 阅读次数: 0

06-Java集合-Vector详解

版权声明:未经允许不得转载! https://blog.csdn.net/bingxuesiyang/article/details/89196912 第1部分 Vector介绍 Vector简介 Vector 是矢量队列,它是JDK1.0版本添加的类。继承于AbstractList,实现了List, RandomAccess, Cloneable这些接口。 Vector 继承了AbstractList,实现了List;所以,它是一个队列,支持相关的添加、删除、修改、遍历等功能。 Vector
分类: 编程语言 发布时间: 04-10 22:30 阅读次数: 0

职工工资信息查询

#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct { char num[20]; char name[20]; char sex[10]; int time[2]; char rank[20]; float salary; }STAFF; STAFF worker[100]; int N=0; void INPUT() { system("cls"); printf("请输入输入
分类: 编程语言 发布时间: 04-10 22:30 阅读次数: 0

飞机飞行日期查询

#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_PLANE_NUM 50 typedef struct { char No[20];//航班号 char Start_Station[20];//起始站 char End_Station[20];//终点站 char Time[10];//周几 int Max_Count;//成员定额 }Plane; int Plane_Menu() {
分类: 编程语言 发布时间: 04-10 22:30 阅读次数: 0

使用openpyxl操作Excel

使用openpyxl操作Excel
分类: 编程语言 发布时间: 04-10 22:30 阅读次数: 0

Python机器学习和常见算法

Python机器学习学习意味着通过学习或经验获得知识或技能。基于此,我们可以定义机器学习(ML)如下-它可以被定义为计算机科学领域,更具体地说是人工智能的应用,其为计算机系统提供了学习数据和从经验改进而无需明确编程的能力。基本上,机器学习的主要焦点是允许计算机自动学习而无需人为干预。现在问题是如何开始和完成这种学习?它可以从数据的观察开始。数据可以是一些示例,指令或一些直接经验。然后在此输入的基础
分类: 企业开发 发布时间: 04-10 22:30 阅读次数: 0

R语言 Keras Training Flags

在需要经常进行调参的情况下,可以使用 Training Flags 来快速变换参数,比起直接修改模型参数来得快而且不易出错。 https://tensorflow.rstudio.com/tools/training_flags.html 使用 flags() library(keras) FLAGS <- flags( flag_integer("dense_units1", 128), flag_numeric("dropout1", 0.4), flag_integer("
分类: 其他 发布时间: 04-10 22:28 阅读次数: 0

Python全栈-JavaScript】jQuery工具

jQuery工具 一、jQuery.browser.version 显示当前 IE 浏览器版本号。 if ( $.browser.msie ) alert( $.browser.version ); 二、jQuery.each(object, [callback]) 通用遍历方法,可用于遍历对象和数组。 不同于遍历 jQuery 对象的 $().each() 方法,此方法可用于遍历任何对象。 回调函数拥有两个参数:第一个为对象的成员或数组的索引,第二个为对应变量或内容。 如果需要退出 ea
分类: 其他 发布时间: 04-10 22:28 阅读次数: 0

[java初探10]__关于数字处理类

前言 在我们的日常开发过程中,我们会经常性的使用到数字类型的数据,同时,也会有众多的对数字处理的需求,针对这个方面的问题,在JAVA语言中.提供解决方法的类就是数字处理类 java中的数字处理类包括: DecimalFormat类,用于格式化数字 Math类,为各种数学计算提供了工具方法 Random类,为java处理随机数问题提供了各种方法 BigInteger类与BigDecimal类,为java处理大数字提供了相应的数学运算操作方法. DecimalFormat类 数字的格式化在解决实际
分类: 其他 发布时间: 04-10 22:28 阅读次数: 0

bootstrapTable使用场景及方式

场景一:混合开发,适用jsp、php前端不足 纯html结构 <div> <table id="table" data-toggle="table" data-url="http://guessulike.config.58v5.cn/gulrecomserviceweb/gulrecall/getscene" data-pagination="true" data-search="true" data-show-columns="true" dat
分类: 其他 发布时间: 04-10 22:28 阅读次数: 0