Feedly y Twitter list sobre Nuevos Medios Digitales

¿Quieres conocer más sobre los Nuevos Medios Digitales? Visita estas páginas y conoce algunos influencers. Feedly: Berkley Advanced Media Institute Columbia Journalism Review Forbes-Tech Mashable Mediagazer NYT-Media Poynter Tech TED Talks Daily (SD video) Ad Age-Media International Journalist’s Network Talking New Media   Twitter list: Marsha Collier Guy Kawasaki Kim Garst Jeff Bullas Neal Schaffer…

Feedly y Twitter

Saludos a todos. He hablado de esta herramienta en otro momento y es Feedly. Es una aplicación que te ayuda a organizar y todos periódicos o revistas favoritos en solo en un mismo lugar. Imagen {Autor: ACJ1, Titulo: Feedly Logo, Recurso: https://bit.ly/2ToI5Yd} Como estoy tomando la clase de Informática 115 y requiere y debemos sobre […]

Feedly #3

Digital media is one of the biggest influences in our current generation for news, social events and informing with different subjects and topics. Feedly is a news aggregator application for various web browsers and mobile devices running iOS and Android. That provides news feeds from a variety of online sources for the user to customize […]

Best First Search: Graphs

package graphs; import java.util.*; import graphs.State; public class GraphImplementation { public void dfs(Node root) { //Avoid infinite loops if(root == null) return; System.out.print(root.getVertex() + “t”); root.state = State.Visited; //for every child for(Node n: root.getChild()) { //if childs state is not visited then recurse if(n.state == State.Unvisited) { dfs(n); } } } public void bfs(Node root) …

Asignación #3: A* program

import java.util.PriorityQueue; import java.util.HashSet; import java.util.Set; import java.util.List; import java.util.Comparator; import java.util.ArrayList; import java.util.Collections; public class AstarSearchAlgo{ //h scores is the stright-line distance from the current city to Bucharest public static void main(String[] args){ //initialize the graph base on the Romania map Node n1 = new Node(“Arad”,366); Node n2 = new Node(“Zerind”,374); Node n3 = …